Multiline logs into one line
This commit is contained in:
parent
4415f1c862
commit
283d937ae7
1 changed files with 3 additions and 6 deletions
|
|
@ -998,10 +998,8 @@ Wallet.prototype.receivePaymentRequest = function(options, pr, cb) {
|
||||||
self.emit('txProposalsUpdated');
|
self.emit('txProposalsUpdated');
|
||||||
}
|
}
|
||||||
|
|
||||||
log.debug('You are currently on this BTC network:');
|
log.debug('You are currently on this BTC network:', network);
|
||||||
log.debug(network);
|
log.debug('The server sent you a message:', memo);
|
||||||
log.debug('The server sent you a message:');
|
|
||||||
log.debug(memo);
|
|
||||||
|
|
||||||
return cb(ntxid, merchantData);
|
return cb(ntxid, merchantData);
|
||||||
});
|
});
|
||||||
|
|
@ -1080,8 +1078,7 @@ Wallet.prototype.sendPaymentTx = function(ntxid, options, cb) {
|
||||||
|
|
||||||
pay = pay.serialize();
|
pay = pay.serialize();
|
||||||
|
|
||||||
log.debug('Sending Payment Message:');
|
log.debug('Sending Payment Message:', pay.toString('hex'));
|
||||||
log.debug(pay.toString('hex'));
|
|
||||||
|
|
||||||
var buf = new ArrayBuffer(pay.length);
|
var buf = new ArrayBuffer(pay.length);
|
||||||
var view = new Uint8Array(buf);
|
var view = new Uint8Array(buf);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue