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