Skip to content

Commit 494e451

Browse files
unnecessary logs remove
1 parent ca83b21 commit 494e451

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

webSource/js/CacheWebTerminalServer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ CacheWebTerminalServer.prototype.initialize = function () {
7878
};
7979

8080
this.socket.onmessage = function (event) {
81-
console.log("server >> ", event.data);
81+
//console.log("server >> ", event.data);
8282
_this.CONTROLLER.serverData(event.data);
8383
};
8484

@@ -121,7 +121,7 @@ CacheWebTerminalServer.prototype.getAutocompleteFile = function (namespace, call
121121
CacheWebTerminalServer.prototype.send = function (string) {
122122

123123
try {
124-
console.log("server << ", string);
124+
//console.log("server << ", string);
125125
this.socket.send(string);
126126
} catch (e) {
127127
this.CONTROLLER.TERMINAL.output.print(this._lc.get(3) + "\r\n");

webSource/js/TerminalInput.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,6 @@ TerminalInput.prototype._updateAutocompleteView = function () {
243243

244244
var variant = this.getCurrentAutocompleteVariant();
245245

246-
console.log(variant, this._autocompleteHint);
247-
248246
if (!variant) {
249247
this._autocompleteHint.hide();
250248
return;

0 commit comments

Comments
 (0)