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
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -56,7 +56,7 @@ function list(filename, verbose)
try {
list = Archive(filename).list(Boolean(verbose));
} catch(e) {
log(LOG_NOTICE, filename + " " + e);
log(LOG_DEBUG, filename + " " + e);
alert(file_getname(filename) + ": Unsupported archive");
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment