Skip to content

Commit

Permalink
Merge pull request #208 from mbehr1/fix/someip_impr_output
Browse files Browse the repository at this point in the history
Fix/someip impr output
  • Loading branch information
mbehr1 authored May 21, 2024
2 parents b2163e4 + 5953c88 commit 380a7ee
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@
"ws": "^8.13.0"
},
"optionalDependencies": {
"node-adlt": "0.57.0"
"node-adlt": "0.57.1"
},
"commitlint": {
"extends": [
Expand Down
10 changes: 5 additions & 5 deletions src/adltComments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,18 +198,18 @@ export class AdltCommentThread {
let levelSymbol
switch (msg.mtin) {
case MTIN_LOG.LOG_WARN:
levelSymbol = '⚠️'
levelSymbol = ' ⚠️'
break
case MTIN_LOG.LOG_ERROR:
levelSymbol = '❗'
levelSymbol = ' ❗'
case MTIN_LOG.LOG_FATAL:
levelSymbol = '🛑'
levelSymbol = ' 🛑'
break
default:
levelSymbol = ' '
levelSymbol = ''
break
}
md += `${levelSymbol}${msg.text}\n`
md += `${msg.text}${levelSymbol}\n`
})
md += '{noformat}\n\n'
return md
Expand Down

0 comments on commit 380a7ee

Please sign in to comment.