Нашел на просторах форума скрипт для цветного лога, и при выполнении в режиме редактирования, всё работает хорошо. Но при многопоточном режиме возникает ошибка ReferenceError: Can't find variable: _LogHTML во время выполнения действия В чем может быть проблема?
function _LogHTML(text, color, define){
var id, time, thread, logHtml, textLog;
define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define;
if(typeof define === 'object' && define !== null){
if(Array.isArray(define)){
id = define.indexOf('id') > -1;
time = define.indexOf('time') > -1;
thread = define.indexOf('thread') > -1;
}
else{
id = define.id == true;
time = define.time == true;
thread = define.thread == true;
}
}
else id = time = thread = true;
id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : '';
time = time ? ' ' + getTime() : '';
thread = thread ? ' Поток №' + thread_number() : '';
logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : '';
logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>';
textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text
function getTime(){
var checkTime = function(i){ return (i < 10) ? "0" + i : i; };
var d = new Date();
var hh = checkTime(d.getHours());
var mm = checkTime(d.getMinutes());
var ss = checkTime(d.getSeconds());
return '[' + hh + ':' + mm + ':' + ss + ']';
};
Logger.WriteHtml(logHtml, textLog);
}
_LogHTML("Не удалось загрузить страницу логин, перезагрузка", "red")