Skip to content
Snippets Groups Projects
Commit 7dc07918 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Lower the "list" archive error log level from NOTICE to DEBUG

Since we install archive.js as the viewer for '*' by default, we expect
it to be asked to list non-archive file-types frequently, so don't be
too alarmist about it.
parent 42ff7e93
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -56,7 +56,7 @@ function list(filename, verbose) ...@@ -56,7 +56,7 @@ function list(filename, verbose)
try { try {
list = Archive(filename).list(Boolean(verbose)); list = Archive(filename).list(Boolean(verbose));
} catch(e) { } catch(e) {
log(LOG_NOTICE, filename + " " + e); log(LOG_DEBUG, filename + " " + e);
alert(file_getname(filename) + ": Unsupported archive"); alert(file_getname(filename) + ": Unsupported archive");
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment