我有函数 Log 可以打印数据以及传递的参数,我如何打印内容,同时总是在日志的开头打印单词“Report:”。
function Log(){
if (app.debug_logs){
if(console && console.log){
console.log.apply(console, "Report: " + arguments);
}
}
}
Log(" error occurred ", " on this log... ");
我想要:“报告:此日志发生错误......”
谢谢。