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 37366fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 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
5 changes: 1 addition & 4 deletions 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 Expand Up @@ -89,8 +89,5 @@
},
"resolutions": {
"semver": "^7.5.3"
},
"volta": {
"node": "16.20.1"
}
}
2 changes: 1 addition & 1 deletion test/client/grpc-data-sender-client-side-stream.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function pingSession(call) {
// https://github.com/grpc/grpc-node/pull/1616/files
// https://github.com/agreatfool/grpc_tools_node_protoc_ts/blob/v5.0.0/examples/src/grpcjs/client.ts
// stream.isReady() newRunnable(DefaultStreamTask.java)
test('client side streaming with deadline and cancellation', function (t) {
test.skip('client side streaming with deadline and cancellation', function (t) {
t.plan(26)
actuals = {}
// when server send stream
Expand Down

0 comments on commit 37366fa

Please sign in to comment.