Skip to content

Commit

Permalink
make logs error as a warning (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyan-dfinity authored Nov 8, 2024
1 parent 6313d97 commit c2419ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ui/src/candid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export async function getCanisterLogs(canisterId: Principal, logger: any) {
logger(content);
}
} catch(err) {
console.error(err);
console.warn(err);
}
}

Expand Down

0 comments on commit c2419ac

Please sign in to comment.