tweak: switch infer debug mode off

This commit is contained in:
NunoSempere 2022-02-12 16:55:20 -05:00
parent 7d0293a013
commit e280b36e20

View File

@ -11,7 +11,7 @@ let htmlEndPoint = "https://www.infer-pub.com/questions";
String.prototype.replaceAll = function replaceAll(search, replace) {
return this.split(search).join(replace);
};
const DEBUG_MODE = "on"; // "off"
const DEBUG_MODE = "off"; // "off"
const SLEEP_TIME_RANDOM = 7000; // miliseconds
const SLEEP_TIME_EXTRA = 2000;
/* Support functions */