All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kamon.instrumentation.logback.MdcPropertyMapAdvice Maven / Gradle / Ivy

There is a newer version: 2.7.4
Show newest version
package kamon.instrumentation.logback;

import kanela.agent.libs.net.bytebuddy.asm.Advice;

import java.util.Map;

public class MdcPropertyMapAdvice {

  @Advice.OnMethodExit()
  public static void onExit(@Advice.Return(readOnly = false) java.util.Map propertyMap) {
    propertyMap = ContextToMdcPropertyMapAppender.appendContext(propertyMap);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy