From: Darren Date: Fri, 27 Jun 2014 21:33:59 +0000 (+0100) Subject: Stop printing RAW commands to the console #558 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e25d9bd4fdc93e6106eefcfb60865e3fb265f959;p=KiwiIRC.git Stop printing RAW commands to the console #558 --- diff --git a/client/src/misc/clientuicommands.js b/client/src/misc/clientuicommands.js index 5ea5e2f..935a89a 100644 --- a/client/src/misc/clientuicommands.js +++ b/client/src/misc/clientuicommands.js @@ -217,7 +217,6 @@ // A fallback action. Send a raw command to the server function unknownCommand (ev) { var raw_cmd = ev.command + ' ' + ev.params.join(' '); - console.log('RAW: ' + raw_cmd); this.app.connections.active_connection.gateway.raw(raw_cmd); }