Skip to content
Snippets Groups Projects
Commit 05971b2d 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 f4c6892e
No related branches found
No related tags found
No related merge requests found
...@@ -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.
Finish editing this message first!
Please register or to comment