Skip to content

Commit

Permalink
Merge branch 'release/release/0.15.14'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Dec 4, 2023
2 parents 9f66763 + f0b5ea3 commit f6278b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeed",
"type": "module",
"version": "0.15.13",
"version": "0.15.14",
"description": "🌱 Simple foundation library",
"author": {
"name": "Dirk Holtwick",
Expand Down
7 changes: 5 additions & 2 deletions src/node/log/log-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,11 @@ export function LoggerNodeHandler(opt: LogHandlerOptions = {}): LogHandler {
}

if (msg.messages?.[0] === loggerStackTraceDebug) {
// eslint-disable-next-line no-console
console.log(getStack())
try {
// eslint-disable-next-line no-console
console.log(getStack())
}
catch (err) { }
}

// Probably time consuming
Expand Down

0 comments on commit f6278b2

Please sign in to comment.