Skip to content

Commit

Permalink
Merge pull request #209 from SonicCloudOrg/dev
Browse files Browse the repository at this point in the history
debugging
  • Loading branch information
ZhouYixun authored Jun 7, 2022
2 parents 2d6e562 + 7ada5f0 commit db74323
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private JSONObject findSteps(JSONObject jsonMsg, String msg) {
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
logger.info("Agent: {} error,cause", ctx.channel().remoteAddress());
cause.fillInStackTrace();
cause.printStackTrace();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
logger.info("Agent: {} error,cause", ctx.channel().remoteAddress());
cause.fillInStackTrace();
cause.printStackTrace();
}

@Override
Expand Down

0 comments on commit db74323

Please sign in to comment.