From a947263c0bca091860537d42b3da9d62d73e611b Mon Sep 17 00:00:00 2001 From: Christoph Diehl Date: Sun, 23 Apr 2017 00:16:24 +0300 Subject: [PATCH] [console.js] Add logging method from common.js --- utils/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/script.js b/utils/script.js index bef2af8..8d1dcfd 100644 --- a/utils/script.js +++ b/utils/script.js @@ -59,7 +59,7 @@ utils.script = { }, safely: function (s) { if (window.debug) { - return "try { " + s + " } catch(e) { Logger.JSError(e); }"; + return "try { " + s + " } catch(e) { logger.JSError(e); }"; } return "try { " + s + " } catch(e) { }"; },