Reduce console logging unless in debug

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-06-02 15:34:56 +02:00
Родитель b6561a15a3
Коммит 5203527535
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -603,7 +603,9 @@ Signaling.Standalone.prototype.connect = function() {
if (typeof (data) === 'string') {
data = JSON.parse(data)
}
console.debug('Received', data)
if (OC.debug) {
console.debug('Received', data)
}
const id = data.id
if (id && this.callbacks.hasOwnProperty(id)) {
const cb = this.callbacks[id]
@ -771,7 +773,9 @@ Signaling.Standalone.prototype.doSend = function(msg, callback) {
this.callbacks[id] = callback
msg['id'] = '' + id
}
console.debug('Sending', msg)
if (OC.debug) {
console.debug('Sending', msg)
}
this.socket.send(JSON.stringify(msg))
}