From 9840d92932c8a66b6c8a005e915b48810718d145 Mon Sep 17 00:00:00 2001 From: Adrian Vollmer Date: Sun, 9 Oct 2022 17:34:49 +0200 Subject: [PATCH] Make 'file not found' message a warning --- zundler/assets/inject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zundler/assets/inject.js b/zundler/assets/inject.js index 2d3c48e..6594869 100644 --- a/zundler/assets/inject.js +++ b/zundler/assets/inject.js @@ -144,7 +144,7 @@ var retrieve_file = function(path) { var file_tree = window.global_context.file_tree; var file = file_tree[path]; if (!file) { - console.log("File not found: " + path); + console.warn("File not found: " + path); return ""; } else { return file.data;