Skip to content
This repository was archived by the owner on Feb 9, 2026. It is now read-only.

Commit ace3971

Browse files
committed
Changed console.error to console.info in utils/result.ts.
1 parent 1254e4e commit ace3971

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class Err<T> {
1616
public constructor(public readonly error: Error) {
1717
// Don't console log for unit tests or if we're not in dev mode
1818
if (process.env.JEST_WORKER_ID === undefined && __DEV__) {
19-
console.error(error);
19+
console.info(error);
2020
}
2121
}
2222

0 commit comments

Comments
 (0)