We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9fe53d commit 8d5f252Copy full SHA for 8d5f252
client/index.js
@@ -107,7 +107,7 @@ var onSocketMsg = {
107
});
108
sendMsg("Warnings", strippedWarnings);
109
for(var i = 0; i < strippedWarnings.length; i++)
110
- console.warn(strippedWarnings[i]);
+ log("warning", strippedWarnings[i]);
111
if(useWarningOverlay) overlay.showMessage(warnings);
112
113
if(initial) return initial = false;
@@ -120,7 +120,7 @@ var onSocketMsg = {
120
121
sendMsg("Errors", strippedErrors);
122
for(var i = 0; i < strippedErrors.length; i++)
123
- console.error(strippedErrors[i]);
+ log("error", strippedErrors[i]);
124
if(useErrorOverlay) overlay.showMessage(errors);
125
},
126
error: function(error) {
0 commit comments