Skip to content

Commit

Permalink
fix(logger): fix non-existing call to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gridcat committed Nov 25, 2021
1 parent 6411f54 commit 192680b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grc-stamp/src/lib/gridcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function connect(): Promise<boolean> {
await rpc.getWalletInfo();
return true;
} catch (err) {
log.warning('Connection error');
log.warn('Connection error');
await wait(5000);
return false;
}
Expand Down

0 comments on commit 192680b

Please sign in to comment.