im.aop.loggers.messageinterpolation.ElapsedStringSupplierRegistrar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of im-aop-loggers Show documentation
Show all versions of im-aop-loggers Show documentation
A handy and configurable sets of annotation-based loggers for Spring Boot that can
log every execution of a method when entering or exiting normally or abnormally, without you
writing a single line of code using aspect-oriented programming (AOP)
The newest version!
package im.aop.loggers.messageinterpolation;
import java.time.Duration;
public class ElapsedStringSupplierRegistrar implements StringSupplierRegistrar {
private static final String ELAPSED_KEY = "elapsed";
@Override
public void register(StringSupplierLookup stringSupplierLookup, Long source) {
stringSupplierLookup.addStringSupplier(ELAPSED_KEY, () -> elapsed(source));
}
private String elapsed(long elapsed) {
return Duration.ofNanos(elapsed).toString();
}
}