Interface Config.ArgumentsConfig
- Enclosing interface:
- Config
public static interface Config.ArgumentsConfig
-
Method Summary
Modifier and TypeMethodDescriptionUsed to wrap arguments in a json object, with this fieldName on root json.booleanEnable output of non-structured logging arguments, default is false.booleanEnable output of structured logging argumentsStructuredArgument, default is true.What prefixes to use, when outputting non-structured arguments.
-
Method Details
-
fieldName
Used to wrap arguments in a json object, with this fieldName on root json. -
includeStructuredArguments
@WithDefault("true") boolean includeStructuredArguments()Enable output of structured logging argumentsStructuredArgument, default is true. -
includeNonStructuredArguments
@WithDefault("false") boolean includeNonStructuredArguments()Enable output of non-structured logging arguments, default is false. -
nonStructuredArgumentsFieldPrefix
What prefixes to use, when outputting non-structured arguments. Default is `arg`, example key for the first argument will be `arg0`.
-