Update app.js

This commit is contained in:
Namhyeon Go 2020-07-23 11:47:17 +09:00
parent 5a0bd5d50f
commit bfdcadce64

4
app.js
View File

@ -62,6 +62,10 @@ var console = {
warn: function(msg) {
var msg = "[WARN] " + msg;
this.__echo(msg);
},
debug: function(msg) {
var msg = "[DEBUG] " + msg;
this.__echo(msg);
}
};