mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
25 lines
No EOL
645 B
Text
25 lines
No EOL
645 B
Text
// Debugging functions to help with development
|
|
|
|
// Author: DosX
|
|
// E-Mail: collab@kay-software.ru
|
|
// GitHub: https://github.com/DosX-dev
|
|
// Telegram: @DosX_dev
|
|
|
|
// Just a debug function
|
|
function _debug(messageText) {
|
|
messageText = "-> " + messageText;
|
|
_log("Debug: " + messageText);
|
|
_setResult("dev-output", messageText, "", "");
|
|
}
|
|
|
|
// Handle exceptions and log them
|
|
function _error(exceptionText) {
|
|
var exceptionText = "Error: " + exceptionText;
|
|
|
|
if (sName) {
|
|
exceptionText += ", last define() is '" + sName + "' with type '" + sType + "'";
|
|
}
|
|
|
|
_log("Exception: " + exceptionText);
|
|
throw exceptionText;
|
|
} |