
ru.vyarus.guice.ext.log.Log Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guice-ext-annotations Show documentation
Show all versions of guice-ext-annotations Show documentation
Guice annotations extensions
package ru.vyarus.guice.ext.log;
import javax.inject.Scope;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Log annotation must be used on {@code org.slf4j.Logger} fields to automatically inject logger instance.
*/
@Scope
@Documented
@Retention(RUNTIME)
@Target(FIELD)
public @interface Log {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy