Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
Rolands-Laucis committed Dec 5, 2024
1 parent 93a8d8a commit 850da04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class LogHandler {
}

HandleError(e: E | Error | string, origin?: ErrorOrigin) { //e is usually class instance of E
log('HandleError', {e, origin});
// log('HandleError', {e, origin});
if (e && (e instanceof E || e instanceof Error)) e['origin'] = origin;
if (this.hard_crash) throw e instanceof E ? (e as E).message : e;
if (this.log_handlers?.error && typeof this.log_handlers.error === 'function') this.log_handlers.error(e);
Expand Down

0 comments on commit 850da04

Please sign in to comment.