Skip to content

Commit

Permalink
Merge branch 'master' into 775-use-tiered-cache-in-place-of-caffeine-…
Browse files Browse the repository at this point in the history
…cache
  • Loading branch information
munishchouhan authored Jan 30, 2025
2 parents 2e39cc9 + 9d7e479 commit 8411b20
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 @@ -55,7 +55,7 @@ class TraceElapsedTimeInterceptor implements MethodInterceptor<Object,Object> {
finally {
final delta = System.currentTimeMillis() - begin
if( delta>=threshold ) {
log.warn(msg(delta,context,result))
log.debug(msg(delta,context,result))
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void onComplete() {
protected void traceResponse(HttpResponse<?> response) {
final long delta = System.currentTimeMillis()-begin;
if( delta>=duration.toMillis() )
log.warn("Slow request detected - elapsed time: {}\n{}", Duration.ofMillis(delta), dumpRequest(request,response));
log.debug("Slow request detected - elapsed time: {}\n{}", Duration.ofMillis(delta), dumpRequest(request,response));
}

@CompileStatic
Expand Down

0 comments on commit 8411b20

Please sign in to comment.