mirror of
https://github.com/zadam/trilium.git
synced 2025-02-23 22:44:44 +08:00
log error messages with ERROR: prefix (there's wasn't anyt other distinction before)
This commit is contained in:
parent
9e5f1a0a87
commit
abdad1c3ae
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ function info(message) {
|
|||
|
||||
function error(message) {
|
||||
// we're using .info() instead of .error() because simple-node-logger emits weird error for showError()
|
||||
info(message);
|
||||
info("ERROR: " + message);
|
||||
}
|
||||
|
||||
const requestBlacklist = [ "/libraries", "/javascripts", "/images", "/stylesheets" ];
|
||||
|
|
Loading…
Reference in a new issue