Added logging with configurable levels to make debugging easier.
This commit is contained in:
parent
124ff83206
commit
d079420d46
@ -35,7 +35,6 @@
|
|||||||
}],
|
}],
|
||||||
|
|
||||||
// disable rules from base configurations
|
// disable rules from base configurations
|
||||||
"no-console": "off",
|
|
||||||
"no-control-regex": "off",
|
"no-control-regex": "off",
|
||||||
|
|
||||||
// stylistic conventions
|
// stylistic conventions
|
||||||
@ -90,6 +89,7 @@
|
|||||||
"$": false,
|
"$": false,
|
||||||
"jQuery": false,
|
"jQuery": false,
|
||||||
"moment": false,
|
"moment": false,
|
||||||
|
"log": false,
|
||||||
|
|
||||||
"COMPILE_TIME": false,
|
"COMPILE_TIME": false,
|
||||||
"COMPILE_MSG": false,
|
"COMPILE_MSG": false,
|
||||||
|
3
package-lock.json
generated
3
package-lock.json
generated
@ -6132,8 +6132,7 @@
|
|||||||
"loglevel": {
|
"loglevel": {
|
||||||
"version": "1.6.0",
|
"version": "1.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.0.tgz",
|
||||||
"integrity": "sha1-rgyqVhERSYxboTcj1vtjHSQAOTQ=",
|
"integrity": "sha1-rgyqVhERSYxboTcj1vtjHSQAOTQ="
|
||||||
"dev": true
|
|
||||||
},
|
},
|
||||||
"longest": {
|
"longest": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
|
@ -87,6 +87,7 @@
|
|||||||
"jsonpath": "^1.0.0",
|
"jsonpath": "^1.0.0",
|
||||||
"jsrsasign": "8.0.4",
|
"jsrsasign": "8.0.4",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
|
"loglevel": "^1.6.0",
|
||||||
"moment": "^2.20.1",
|
"moment": "^2.20.1",
|
||||||
"moment-timezone": "^0.5.14",
|
"moment-timezone": "^0.5.14",
|
||||||
"node-md6": "^0.1.0",
|
"node-md6": "^0.1.0",
|
||||||
|
@ -34,6 +34,7 @@ const Chef = function() {
|
|||||||
* @returns {number} response.error - The error object thrown by a failed operation (false if no error)
|
* @returns {number} response.error - The error object thrown by a failed operation (false if no error)
|
||||||
*/
|
*/
|
||||||
Chef.prototype.bake = async function(input, recipeConfig, options, progress, step) {
|
Chef.prototype.bake = async function(input, recipeConfig, options, progress, step) {
|
||||||
|
log.debug("Chef baking");
|
||||||
let startTime = new Date().getTime(),
|
let startTime = new Date().getTime(),
|
||||||
recipe = new Recipe(recipeConfig),
|
recipe = new Recipe(recipeConfig),
|
||||||
containsFc = recipe.containsFlowControl(),
|
containsFc = recipe.containsFlowControl(),
|
||||||
@ -69,7 +70,7 @@ Chef.prototype.bake = async function(input, recipeConfig, options, progress, ste
|
|||||||
try {
|
try {
|
||||||
progress = await recipe.execute(this.dish, progress);
|
progress = await recipe.execute(this.dish, progress);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
log.error(err);
|
||||||
error = {
|
error = {
|
||||||
displayStr: err.displayStr,
|
displayStr: err.displayStr,
|
||||||
};
|
};
|
||||||
@ -112,6 +113,8 @@ Chef.prototype.bake = async function(input, recipeConfig, options, progress, ste
|
|||||||
* @returns {number} The time it took to run the silent bake in milliseconds.
|
* @returns {number} The time it took to run the silent bake in milliseconds.
|
||||||
*/
|
*/
|
||||||
Chef.prototype.silentBake = function(recipeConfig) {
|
Chef.prototype.silentBake = function(recipeConfig) {
|
||||||
|
log.debug("Running silent bake");
|
||||||
|
|
||||||
let startTime = new Date().getTime(),
|
let startTime = new Date().getTime(),
|
||||||
recipe = new Recipe(recipeConfig),
|
recipe = new Recipe(recipeConfig),
|
||||||
dish = new Dish("", Dish.STRING);
|
dish = new Dish("", Dish.STRING);
|
||||||
|
@ -42,6 +42,8 @@ self.postMessage({
|
|||||||
self.addEventListener("message", function(e) {
|
self.addEventListener("message", function(e) {
|
||||||
// Handle message
|
// Handle message
|
||||||
const r = e.data;
|
const r = e.data;
|
||||||
|
log.debug("ChefWorker receiving command '" + r.action + "'");
|
||||||
|
|
||||||
switch (r.action) {
|
switch (r.action) {
|
||||||
case "bake":
|
case "bake":
|
||||||
bake(r.data);
|
bake(r.data);
|
||||||
@ -61,6 +63,9 @@ self.addEventListener("message", function(e) {
|
|||||||
r.data.pos
|
r.data.pos
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
case "setLogLevel":
|
||||||
|
log.setLevel(r.data, false);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -121,7 +126,7 @@ function loadRequiredModules(recipeConfig) {
|
|||||||
let module = self.OperationConfig[op.op].module;
|
let module = self.OperationConfig[op.op].module;
|
||||||
|
|
||||||
if (!OpModules.hasOwnProperty(module)) {
|
if (!OpModules.hasOwnProperty(module)) {
|
||||||
console.log("Loading module " + module);
|
log.info("Loading module " + module);
|
||||||
self.sendStatusMessage("Loading module " + module);
|
self.sendStatusMessage("Loading module " + module);
|
||||||
self.importScripts(self.docURL + "/" + module + ".js");
|
self.importScripts(self.docURL + "/" + module + ".js");
|
||||||
}
|
}
|
||||||
|
@ -111,6 +111,7 @@ Dish.enumLookup = function(typeEnum) {
|
|||||||
* @param {number} type - The data type of value, see Dish enums.
|
* @param {number} type - The data type of value, see Dish enums.
|
||||||
*/
|
*/
|
||||||
Dish.prototype.set = function(value, type) {
|
Dish.prototype.set = function(value, type) {
|
||||||
|
log.debug("Dish type: " + Dish.enumLookup(type));
|
||||||
this.value = value;
|
this.value = value;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
|
|
||||||
@ -141,6 +142,8 @@ Dish.prototype.get = function(type) {
|
|||||||
* @param {number} toType - The data type of value, see Dish enums.
|
* @param {number} toType - The data type of value, see Dish enums.
|
||||||
*/
|
*/
|
||||||
Dish.prototype.translate = function(toType) {
|
Dish.prototype.translate = function(toType) {
|
||||||
|
log.debug(`Translating Dish from ${Dish.enumLookup(this.type)} to ${Dish.enumLookup(toType)}`);
|
||||||
|
|
||||||
// Convert data to intermediate byteArray type
|
// Convert data to intermediate byteArray type
|
||||||
switch (this.type) {
|
switch (this.type) {
|
||||||
case Dish.STRING:
|
case Dish.STRING:
|
||||||
|
@ -150,14 +150,17 @@ Recipe.prototype.execute = async function(dish, startFrom) {
|
|||||||
for (let i = startFrom; i < this.opList.length; i++) {
|
for (let i = startFrom; i < this.opList.length; i++) {
|
||||||
op = this.opList[i];
|
op = this.opList[i];
|
||||||
if (op.isDisabled()) {
|
if (op.isDisabled()) {
|
||||||
|
log.debug(`[${i}] '${op.name}' is disabled`);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (op.isBreakpoint()) {
|
if (op.isBreakpoint()) {
|
||||||
|
log.debug(`[${i}] Pausing at breakpoint on '${op.name}'`);
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
input = dish.get(op.inputType);
|
input = dish.get(op.inputType);
|
||||||
|
log.debug(`[${i}] Executing '${op.name}'`);
|
||||||
|
|
||||||
if (op.isFlowControl()) {
|
if (op.isFlowControl()) {
|
||||||
// Package up the current state
|
// Package up the current state
|
||||||
|
@ -91,7 +91,7 @@ App.prototype.loaded = function() {
|
|||||||
* @param {boolean} [logToConsole=false]
|
* @param {boolean} [logToConsole=false]
|
||||||
*/
|
*/
|
||||||
App.prototype.handleError = function(err, logToConsole) {
|
App.prototype.handleError = function(err, logToConsole) {
|
||||||
if (logToConsole) console.error(err);
|
if (logToConsole) log.error(err);
|
||||||
const msg = err.displayStr || err.toString();
|
const msg = err.displayStr || err.toString();
|
||||||
this.alert(msg, "danger", this.options.errorTimeout, !this.options.showErrors);
|
this.alert(msg, "danger", this.options.errorTimeout, !this.options.showErrors);
|
||||||
};
|
};
|
||||||
@ -129,6 +129,7 @@ App.prototype.autoBake = function() {
|
|||||||
if (this.autoBakePause) return false;
|
if (this.autoBakePause) return false;
|
||||||
|
|
||||||
if (this.autoBake_ && !this.baking) {
|
if (this.autoBake_ && !this.baking) {
|
||||||
|
log.debug("Auto-baking");
|
||||||
this.bake();
|
this.bake();
|
||||||
} else {
|
} else {
|
||||||
this.manager.controls.showStaleIndicator();
|
this.manager.controls.showStaleIndicator();
|
||||||
@ -569,7 +570,7 @@ App.prototype.isLocalStorageAvailable = function() {
|
|||||||
App.prototype.alert = function(str, style, timeout, silent) {
|
App.prototype.alert = function(str, style, timeout, silent) {
|
||||||
const time = new Date();
|
const time = new Date();
|
||||||
|
|
||||||
console.log("[" + time.toLocaleString() + "] " + str);
|
log.info("[" + time.toLocaleString() + "] " + str);
|
||||||
if (silent) return;
|
if (silent) return;
|
||||||
|
|
||||||
style = style || "danger";
|
style = style || "danger";
|
||||||
|
@ -215,6 +215,7 @@ InputWaiter.prototype.handleLoaderMessage = function(e) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (r.hasOwnProperty("fileBuffer")) {
|
if (r.hasOwnProperty("fileBuffer")) {
|
||||||
|
log.debug("Input file loaded");
|
||||||
this.fileBuffer = r.fileBuffer;
|
this.fileBuffer = r.fileBuffer;
|
||||||
window.dispatchEvent(this.manager.statechange);
|
window.dispatchEvent(this.manager.statechange);
|
||||||
}
|
}
|
||||||
|
@ -58,7 +58,7 @@ const Manager = function(app) {
|
|||||||
this.ops = new OperationsWaiter(this.app, this);
|
this.ops = new OperationsWaiter(this.app, this);
|
||||||
this.input = new InputWaiter(this.app, this);
|
this.input = new InputWaiter(this.app, this);
|
||||||
this.output = new OutputWaiter(this.app, this);
|
this.output = new OutputWaiter(this.app, this);
|
||||||
this.options = new OptionsWaiter(this.app);
|
this.options = new OptionsWaiter(this.app, this);
|
||||||
this.highlighter = new HighlighterWaiter(this.app, this);
|
this.highlighter = new HighlighterWaiter(this.app, this);
|
||||||
this.seasonal = new SeasonalWaiter(this.app, this);
|
this.seasonal = new SeasonalWaiter(this.app, this);
|
||||||
this.bindings = new BindingsWaiter(this.app, this);
|
this.bindings = new BindingsWaiter(this.app, this);
|
||||||
@ -172,6 +172,7 @@ Manager.prototype.initialiseEventListeners = function() {
|
|||||||
this.addDynamicListener(".option-item input[type=number]", "change", this.options.numberChange, this.options);
|
this.addDynamicListener(".option-item input[type=number]", "change", this.options.numberChange, this.options);
|
||||||
this.addDynamicListener(".option-item select", "change", this.options.selectChange, this.options);
|
this.addDynamicListener(".option-item select", "change", this.options.selectChange, this.options);
|
||||||
document.getElementById("theme").addEventListener("change", this.options.themeChange.bind(this.options));
|
document.getElementById("theme").addEventListener("change", this.options.themeChange.bind(this.options));
|
||||||
|
document.getElementById("logLevel").addEventListener("change", this.options.logLevelChange.bind(this.options));
|
||||||
|
|
||||||
// Misc
|
// Misc
|
||||||
window.addEventListener("keydown", this.bindings.parseInput.bind(this.bindings));
|
window.addEventListener("keydown", this.bindings.parseInput.bind(this.bindings));
|
||||||
|
@ -8,8 +8,9 @@
|
|||||||
* @constructor
|
* @constructor
|
||||||
* @param {App} app - The main view object for CyberChef.
|
* @param {App} app - The main view object for CyberChef.
|
||||||
*/
|
*/
|
||||||
const OptionsWaiter = function(app) {
|
const OptionsWaiter = function(app, manager) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
|
this.manager = manager;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -86,6 +87,7 @@ OptionsWaiter.prototype.switchChange = function(e, state) {
|
|||||||
const el = e.target;
|
const el = e.target;
|
||||||
const option = el.getAttribute("option");
|
const option = el.getAttribute("option");
|
||||||
|
|
||||||
|
log.debug(`Setting ${option} to ${state}`);
|
||||||
this.app.options[option] = state;
|
this.app.options[option] = state;
|
||||||
|
|
||||||
if (this.app.isLocalStorageAvailable())
|
if (this.app.isLocalStorageAvailable())
|
||||||
@ -102,8 +104,10 @@ OptionsWaiter.prototype.switchChange = function(e, state) {
|
|||||||
OptionsWaiter.prototype.numberChange = function(e) {
|
OptionsWaiter.prototype.numberChange = function(e) {
|
||||||
const el = e.target;
|
const el = e.target;
|
||||||
const option = el.getAttribute("option");
|
const option = el.getAttribute("option");
|
||||||
|
const val = parseInt(el.value, 10);
|
||||||
|
|
||||||
this.app.options[option] = parseInt(el.value, 10);
|
log.debug(`Setting ${option} to ${val}`);
|
||||||
|
this.app.options[option] = val;
|
||||||
|
|
||||||
if (this.app.isLocalStorageAvailable())
|
if (this.app.isLocalStorageAvailable())
|
||||||
localStorage.setItem("options", JSON.stringify(this.app.options));
|
localStorage.setItem("options", JSON.stringify(this.app.options));
|
||||||
@ -120,6 +124,7 @@ OptionsWaiter.prototype.selectChange = function(e) {
|
|||||||
const el = e.target;
|
const el = e.target;
|
||||||
const option = el.getAttribute("option");
|
const option = el.getAttribute("option");
|
||||||
|
|
||||||
|
log.debug(`Setting ${option} to ${el.value}`);
|
||||||
this.app.options[option] = el.value;
|
this.app.options[option] = el.value;
|
||||||
|
|
||||||
if (this.app.isLocalStorageAvailable())
|
if (this.app.isLocalStorageAvailable())
|
||||||
@ -149,6 +154,8 @@ OptionsWaiter.prototype.setWordWrap = function() {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Changes the theme by setting the class of the <html> element.
|
* Changes the theme by setting the class of the <html> element.
|
||||||
|
*
|
||||||
|
* @param {Event} e
|
||||||
*/
|
*/
|
||||||
OptionsWaiter.prototype.themeChange = function (e) {
|
OptionsWaiter.prototype.themeChange = function (e) {
|
||||||
const themeClass = e.target.value;
|
const themeClass = e.target.value;
|
||||||
@ -156,4 +163,17 @@ OptionsWaiter.prototype.themeChange = function (e) {
|
|||||||
document.querySelector(":root").className = themeClass;
|
document.querySelector(":root").className = themeClass;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Changes the console logging level.
|
||||||
|
*
|
||||||
|
* @param {Event} e
|
||||||
|
*/
|
||||||
|
OptionsWaiter.prototype.logLevelChange = function (e) {
|
||||||
|
const level = e.target.value;
|
||||||
|
log.info("Setting log level to " + level);
|
||||||
|
log.setLevel(level, false);
|
||||||
|
this.manager.worker.setLogLevel();
|
||||||
|
};
|
||||||
|
|
||||||
export default OptionsWaiter;
|
export default OptionsWaiter;
|
||||||
|
@ -41,6 +41,7 @@ OutputWaiter.prototype.get = function() {
|
|||||||
* @param {boolean} [preserveBuffer=false] - Whether to preserve the dishBuffer
|
* @param {boolean} [preserveBuffer=false] - Whether to preserve the dishBuffer
|
||||||
*/
|
*/
|
||||||
OutputWaiter.prototype.set = function(data, type, duration, preserveBuffer) {
|
OutputWaiter.prototype.set = function(data, type, duration, preserveBuffer) {
|
||||||
|
log.debug("Output type: " + type);
|
||||||
const outputText = document.getElementById("output-text");
|
const outputText = document.getElementById("output-text");
|
||||||
const outputHtml = document.getElementById("output-html");
|
const outputHtml = document.getElementById("output-html");
|
||||||
const outputFile = document.getElementById("output-file");
|
const outputFile = document.getElementById("output-file");
|
||||||
@ -73,7 +74,7 @@ OutputWaiter.prototype.set = function(data, type, duration, preserveBuffer) {
|
|||||||
try {
|
try {
|
||||||
eval(scriptElements[i].innerHTML); // eslint-disable-line no-eval
|
eval(scriptElements[i].innerHTML); // eslint-disable-line no-eval
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
log.error(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -21,8 +21,10 @@ const WorkerWaiter = function(app, manager) {
|
|||||||
* Sets up the ChefWorker and associated listeners.
|
* Sets up the ChefWorker and associated listeners.
|
||||||
*/
|
*/
|
||||||
WorkerWaiter.prototype.registerChefWorker = function() {
|
WorkerWaiter.prototype.registerChefWorker = function() {
|
||||||
|
log.debug("Registering new ChefWorker");
|
||||||
this.chefWorker = new ChefWorker();
|
this.chefWorker = new ChefWorker();
|
||||||
this.chefWorker.addEventListener("message", this.handleChefMessage.bind(this));
|
this.chefWorker.addEventListener("message", this.handleChefMessage.bind(this));
|
||||||
|
this.setLogLevel();
|
||||||
|
|
||||||
let docURL = document.location.href.split(/[#?]/)[0];
|
let docURL = document.location.href.split(/[#?]/)[0];
|
||||||
const index = docURL.lastIndexOf("/");
|
const index = docURL.lastIndexOf("/");
|
||||||
@ -40,6 +42,8 @@ WorkerWaiter.prototype.registerChefWorker = function() {
|
|||||||
*/
|
*/
|
||||||
WorkerWaiter.prototype.handleChefMessage = function(e) {
|
WorkerWaiter.prototype.handleChefMessage = function(e) {
|
||||||
const r = e.data;
|
const r = e.data;
|
||||||
|
log.debug("Receiving '" + r.action + "' from ChefWorker");
|
||||||
|
|
||||||
switch (r.action) {
|
switch (r.action) {
|
||||||
case "bakeSuccess":
|
case "bakeSuccess":
|
||||||
this.bakingComplete(r.data);
|
this.bakingComplete(r.data);
|
||||||
@ -58,6 +62,7 @@ WorkerWaiter.prototype.handleChefMessage = function(e) {
|
|||||||
this.manager.output.setStatusMsg(r.data);
|
this.manager.output.setStatusMsg(r.data);
|
||||||
break;
|
break;
|
||||||
case "optionUpdate":
|
case "optionUpdate":
|
||||||
|
log.debug(`Setting ${r.data.option} to ${r.data.value}`);
|
||||||
this.app.options[r.data.option] = r.data.value;
|
this.app.options[r.data.option] = r.data.value;
|
||||||
break;
|
break;
|
||||||
case "setRegisters":
|
case "setRegisters":
|
||||||
@ -67,7 +72,7 @@ WorkerWaiter.prototype.handleChefMessage = function(e) {
|
|||||||
this.manager.highlighter.displayHighlights(r.data.pos, r.data.direction);
|
this.manager.highlighter.displayHighlights(r.data.pos, r.data.direction);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
console.error("Unrecognised message from ChefWorker", e);
|
log.error("Unrecognised message from ChefWorker", e);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -145,7 +150,7 @@ WorkerWaiter.prototype.bake = function(input, recipeConfig, options, progress, s
|
|||||||
* Asks the ChefWorker to run a silent bake, forcing the browser to load and cache all the relevant
|
* Asks the ChefWorker to run a silent bake, forcing the browser to load and cache all the relevant
|
||||||
* JavaScript code needed to do a real bake.
|
* JavaScript code needed to do a real bake.
|
||||||
*
|
*
|
||||||
* @param {Objectp[]} [recipeConfig]
|
* @param {Object[]} [recipeConfig]
|
||||||
*/
|
*/
|
||||||
WorkerWaiter.prototype.silentBake = function(recipeConfig) {
|
WorkerWaiter.prototype.silentBake = function(recipeConfig) {
|
||||||
this.chefWorker.postMessage({
|
this.chefWorker.postMessage({
|
||||||
@ -178,4 +183,19 @@ WorkerWaiter.prototype.highlight = function(recipeConfig, direction, pos) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the console log level in the worker.
|
||||||
|
*
|
||||||
|
* @param {string} level
|
||||||
|
*/
|
||||||
|
WorkerWaiter.prototype.setLogLevel = function(level) {
|
||||||
|
if (!this.chefWorker) return;
|
||||||
|
|
||||||
|
this.chefWorker.postMessage({
|
||||||
|
action: "setLogLevel",
|
||||||
|
data: log.getLevel()
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
export default WorkerWaiter;
|
export default WorkerWaiter;
|
||||||
|
@ -372,6 +372,17 @@
|
|||||||
<input type="number" option="outputFileThreshold" id="outputFileThreshold" />
|
<input type="number" option="outputFileThreshold" id="outputFileThreshold" />
|
||||||
<label for="outputFileThreshold"> Size threshold for treating the output as a file (KiB)</label>
|
<label for="outputFileThreshold"> Size threshold for treating the output as a file (KiB)</label>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="option-item">
|
||||||
|
<select option="logLevel" id="logLevel">
|
||||||
|
<option value="silent">Silent</option>
|
||||||
|
<option value="error">Error</option>
|
||||||
|
<option value="warn">Warn</option>
|
||||||
|
<option value="info">Info</option>
|
||||||
|
<option value="debug">Debug</option>
|
||||||
|
<option value="trace">Trace</option>
|
||||||
|
</select>
|
||||||
|
<label for="logLevel"> Console logging level</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" id="reset-options">Reset options to default</button>
|
<button type="button" class="btn btn-default" id="reset-options">Reset options to default</button>
|
||||||
|
@ -47,7 +47,8 @@ function main() {
|
|||||||
attemptHighlight: true,
|
attemptHighlight: true,
|
||||||
theme: "classic",
|
theme: "classic",
|
||||||
useMetaKey: false,
|
useMetaKey: false,
|
||||||
outputFileThreshold: 1024
|
outputFileThreshold: 1024,
|
||||||
|
logLevel: "info"
|
||||||
};
|
};
|
||||||
|
|
||||||
document.removeEventListener("DOMContentLoaded", main, false);
|
document.removeEventListener("DOMContentLoaded", main, false);
|
||||||
@ -55,9 +56,6 @@ function main() {
|
|||||||
window.app.setup();
|
window.app.setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fix issues with browsers that don't support console.log()
|
|
||||||
window.console = console || {log: function() {}, error: function() {}};
|
|
||||||
|
|
||||||
window.compileTime = moment.tz(COMPILE_TIME, "DD/MM/YYYY HH:mm:ss z", "UTC").valueOf();
|
window.compileTime = moment.tz(COMPILE_TIME, "DD/MM/YYYY HH:mm:ss z", "UTC").valueOf();
|
||||||
window.compileMessage = COMPILE_MSG;
|
window.compileMessage = COMPILE_MSG;
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
/* eslint no-console: 0 */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TestRunner.js
|
* TestRunner.js
|
||||||
*
|
*
|
||||||
|
@ -35,7 +35,8 @@ module.exports = {
|
|||||||
new webpack.ProvidePlugin({
|
new webpack.ProvidePlugin({
|
||||||
$: "jquery",
|
$: "jquery",
|
||||||
jQuery: "jquery",
|
jQuery: "jquery",
|
||||||
moment: "moment-timezone"
|
moment: "moment-timezone",
|
||||||
|
log: "loglevel"
|
||||||
}),
|
}),
|
||||||
new webpack.BannerPlugin({
|
new webpack.BannerPlugin({
|
||||||
banner: banner,
|
banner: banner,
|
||||||
|
Loading…
Reference in New Issue
Block a user