mirror of
https://github.com/tcsenpai/Zundler.git
synced 2025-06-08 12:35:39 +00:00
Make 'file not found' message a warning
This commit is contained in:
parent
7a891bb14d
commit
9840d92932
@ -144,7 +144,7 @@ var retrieve_file = function(path) {
|
|||||||
var file_tree = window.global_context.file_tree;
|
var file_tree = window.global_context.file_tree;
|
||||||
var file = file_tree[path];
|
var file = file_tree[path];
|
||||||
if (!file) {
|
if (!file) {
|
||||||
console.log("File not found: " + path);
|
console.warn("File not found: " + path);
|
||||||
return "";
|
return "";
|
||||||
} else {
|
} else {
|
||||||
return file.data;
|
return file.data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user