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

io.datakernel.test.rules.LoggerConfig Maven / Gradle / Ivy

The newest version!
package io.datakernel.test.rules;

import org.slf4j.event.Level;

import java.lang.annotation.*;

@Repeatable(LoggerConfig.Container.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface LoggerConfig {
	Class logger() default Void.class;

	Class packageOf() default Void.class;

	Level value();

	@Retention(RetentionPolicy.RUNTIME)
	@Target({ElementType.METHOD, ElementType.TYPE})
	@interface Container {
		LoggerConfig[] value();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy