Dial down excessive debug logging

This commit is contained in:
Zef Hemel
2023-08-10 16:09:28 +02:00
parent c13f7edb65
commit c6fce524e6
3 changed files with 21 additions and 16 deletions
+1 -1
View File
@@ -400,7 +400,7 @@ export class HttpServer {
response.body = fileData.data;
} catch (e: any) {
console.error("Error GETting file", name, e);
console.error("Error GETting file", name, e.message);
response.status = 404;
response.body = "Not found";
}