fix(tracing): use trace level instead of info on TracingServiceImpl
All checks were successful
Build / build (push) Successful in 2m30s
All checks were successful
Build / build (push) Successful in 2m30s
This commit is contained in:
parent
291e3b0712
commit
a0006d4455
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ class TracingServiceImpl implements TracingService {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void trace(final String key, final Object value) {
|
public void trace(final String key, final Object value) {
|
||||||
Log.infof("tracing key=%s value=%s", key, value);
|
Log.tracef("tracing key=%s value=%s", key, value);
|
||||||
MDC.put(key, value);
|
MDC.put(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue