projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
121aeb3
)
Stop printing RAW commands to the console #558
author
Darren
<darren@darrenwhitlen.com>
Fri, 27 Jun 2014 21:33:59 +0000
(22:33 +0100)
committer
Darren
<darren@darrenwhitlen.com>
Fri, 27 Jun 2014 21:33:59 +0000
(22:33 +0100)
client/src/misc/clientuicommands.js
patch
|
blob
|
blame
|
history
diff --git
a/client/src/misc/clientuicommands.js
b/client/src/misc/clientuicommands.js
index 5ea5e2f7c799c7d535644d8f677c52d8e76eefe5..935a89a2f11c81052ff4afd0a577c831b5678c6a 100644
(file)
--- 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);
}