diff --git a/client/client.js b/client/client.js index d2292e22..ce8d5ee8 100644 --- a/client/client.js +++ b/client/client.js @@ -23,10 +23,10 @@ function CloudCmdProto(Util, DOM) { let Listeners; const log = (str) => { - if (!Debug) - return; + if (Debug) + console.log(str); - console.log(str); + return str; }; const CloudCmd = this;