Skip to content

Commit

Permalink
[pinpoint-apm#186] Change error log level to info log
Browse files Browse the repository at this point in the history
  • Loading branch information
feelform committed May 2, 2024
1 parent ddac37c commit 593c5ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/utils/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ class Logger {
}

warn() {
this.logger.warn.apply(null, arguments)
this.logger.info.apply(null, arguments)
}

error() {
this.logger.error.apply(null, arguments)
this.logger.info.apply(null, arguments)
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pinpoint-node-agent",
"version": "0.8.4-next.1",
"version": "0.8.4-next.2",
"main": "index.js",
"scripts": {
"test": "tape ./test/**/*.test.js",
Expand Down

0 comments on commit 593c5ac

Please sign in to comment.