Disable console warning and errors
07 June 2017 14:55
08 June 2017 12:51
Hi,
There's a way to do it, although it's a hack. You can add this snippet at the top of your application script:
There's a way to do it, although it's a hack. You can add this snippet at the top of your application script:
var m_print = require("print");
m_print.info = function(){};
m_print.log = function(){};
m_print.log_raw = function(){};
m_print.warn = function(){};
m_print.error = function(){};
m_print.export_warn = function(){};
m_print.export_error = function(){};