Interface Config.ArgumentsConfig

Enclosing interface:
Config

public static interface Config.ArgumentsConfig
  • Method Details

    • fieldName

      Optional<String> 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 arguments StructuredArgument, default is true.
    • includeNonStructuredArguments

      @WithDefault("false") boolean includeNonStructuredArguments()
      Enable output of non-structured logging arguments, default is false.
    • nonStructuredArgumentsFieldPrefix

      @WithDefault("arg") String nonStructuredArgumentsFieldPrefix()
      What prefixes to use, when outputting non-structured arguments. Default is `arg`, example key for the first argument will be `arg0`.