suppress some noisy log statements

pull/1/head
ansuz 2020-06-29 16:51:28 -04:00
parent 526c17810b
commit fd355d789f
2 changed files with 2 additions and 2 deletions

View File

@ -1986,7 +1986,7 @@ define([
}).nThen(function (waitFor) {
var blockHash = LocalStore.getBlockHash();
if (blockHash) {
console.log(blockHash);
console.debug("Block hash is present");
var parsed = Block.parseBlockHash(blockHash);
if (typeof(parsed) !== 'object') {

View File

@ -249,7 +249,7 @@ define([
setTimeout(saveChanges);
}
padChatChannel = channel;
console.error('Chat ID:', channel);
console.debug('Chat ID:', channel);
ctx.sframeChan.query('Q_CHAT_OPENPADCHAT', channel, function (err, obj) {
if (err || (obj && obj.error)) { console.error(err || (obj && obj.error)); }
});