use backend logger

This commit is contained in:
Kyle Zsembery 2020-10-14 13:11:45 +11:00
parent 7018113fdd
commit ae64ef485b
2 changed files with 11 additions and 4 deletions

View File

@ -476,7 +476,9 @@ export class Daemon {
if (!data.hasOwnProperty("result")) return; if (!data.hasOwnProperty("result")) return;
const nodes = data.result.service_node_states; const nodes = data.result.service_node_states;
console.log("Number of service nodes returned from RPC: " + nodes.length); this.backend.log.info(
"Number of service nodes returned from RPC: " + nodes.length
);
const service_nodes = { const service_nodes = {
nodes, nodes,
fetching: false fetching: false

View File

@ -917,6 +917,7 @@ export class WalletRPC {
this.wallet_state.balance == n.result.balance && this.wallet_state.balance == n.result.balance &&
this.wallet_state.unlocked_balance == n.result.unlocked_balance this.wallet_state.unlocked_balance == n.result.unlocked_balance
) { ) {
this.backend.log.info("Your balance is unchanged");
continue; continue;
} }
@ -930,6 +931,7 @@ export class WalletRPC {
// if balance has recently changed, get updated list of transactions and used addresses // if balance has recently changed, get updated list of transactions and used addresses
let actions = [this.getTransactions(), this.getAddressList()]; let actions = [this.getTransactions(), this.getAddressList()];
actions.push(this.getAddressBook()); actions.push(this.getAddressBook());
this.backend.log.info("Begin to get transactions and address list");
Promise.all(actions).then(data => { Promise.all(actions).then(data => {
for (let n of data) { for (let n of data) {
Object.keys(n).map(key => { Object.keys(n).map(key => {
@ -2060,11 +2062,12 @@ export class WalletRPC {
failed: true, failed: true,
pool: true pool: true
}).then(data => { }).then(data => {
this.backend.log.info("get_transfers callback running");
if (data.hasOwnProperty("error") || !data.hasOwnProperty("result")) { if (data.hasOwnProperty("error") || !data.hasOwnProperty("result")) {
console.log( this.backend.log.info(
"get_transfers did not return a result, or returned an error" "get_transfers did not return a result, or returned an error"
); );
console.log(data); this.backend.log.info(data);
resolve({}); resolve({});
return; return;
} }
@ -2088,7 +2091,9 @@ export class WalletRPC {
types.forEach(type => { types.forEach(type => {
if (data.result.hasOwnProperty(type)) { if (data.result.hasOwnProperty(type)) {
const txs_of_type_len = data.result[type].length; const txs_of_type_len = data.result[type].length;
console.log(`Number of txs of type ${type}: ${txs_of_type_len}`); this.backend.log.info(
`Number of txs of type ${type}: ${txs_of_type_len}`
);
wallet.transactions.tx_list = wallet.transactions.tx_list.concat( wallet.transactions.tx_list = wallet.transactions.tx_list.concat(
data.result[type] data.result[type]
); );