fix(tracing): use trace level instead of info on TracingServiceImpl
All checks were successful
Build / build (push) Successful in 2m30s

This commit is contained in:
Jorge Bornhausen 2025-06-18 01:54:21 +02:00
parent 291e3b0712
commit a0006d4455
Signed by: jorge.bornhausen
SSH key fingerprint: SHA256:X2ootOwvCeP4FoNfmVUFIKIbhq95tAgnt7Oqg3x+lfs

View file

@ -23,7 +23,7 @@ class TracingServiceImpl implements TracingService {
@Override
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);
}