Show log sources

This commit is contained in:
tobspr 2020-05-19 11:56:49 +02:00
parent 1056fe389d
commit 71d25078a0
1 changed files with 5 additions and 5 deletions

View File

@ -240,10 +240,10 @@ function logInternal(handle, consoleMethod, args) {
...args
);
} else {
if (G_IS_DEV && !globalConfig.debug.disableLoggingLogSources) {
consoleMethod.call(console, "%c" + context, "color: " + labelColor, ...args);
} else {
consoleMethod.call(console, ...args);
}
// if (G_IS_DEV && !globalConfig.debug.disableLoggingLogSources) {
consoleMethod.call(console, "%c" + context, "color: " + labelColor, ...args);
// } else {
// consoleMethod.call(console, ...args);
// }
}
}