From 1ffdfe2d6e1f962fa1905b7053381d3304a95666 Mon Sep 17 00:00:00 2001 From: gen BTC Date: Thu, 29 Mar 2018 01:45:25 -0400 Subject: [PATCH] remove Exiting out of buyjob early 0 message --- modules/jobs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jobs.js b/modules/jobs.js index 4200452e3..46b4c4f57 100644 --- a/modules/jobs.js +++ b/modules/jobs.js @@ -14,7 +14,7 @@ MODULES["jobs"].customRatio; //set this like above and it will Auto use it. function safeBuyJob(jobTitle, amount) { if (!Number.isFinite(amount) || amount === 0 || typeof amount === 'undefined') { - debug("Exiting out of buyjob early " + jobTitle + " " + amount); + //debug("Exiting out of buyjob early " + jobTitle + " " + amount); return false; } var old = preBuy2();