Package org.nuxeo.runtime.test.runner
Annotation Type ConsoleLogLevelThreshold
-
@Inherited @Retention(RUNTIME) @Target({TYPE,METHOD}) public @interface ConsoleLogLevelThreshold
Annotation to define a console log level threshold on the root logger, which allows us to hide console log messages when launching tests. AnyClass
orMethod
can be annotated, when aMethod
is marked then the console level will override theClass
level if it is defined and it will be restored after the end of the execution of thisMethod
otherwise it will inherit theClass
defined level.The default level value is
Level.OFF
which means all console log messages will be hidden.- Since:
- 11.1
-
-
Element Detail
-
value
String value
- Default:
- "OFF"
-
-