minLogLevel property

String? minLogLevel
getter/setter pair

Non-empty default.

Specificies the lowest level of the plugin logs that are exported to Cloud Logging. This setting relates to the logs generated by using logging statements in your Wasm code. This field is can be set only if logging is enabled for the plugin. If the field is not provided when logging is enabled, it is set to INFO by default. Possible string values are:

  • "LOG_LEVEL_UNSPECIFIED" : Unspecified value. Defaults to LogLevel.INFO.
  • "TRACE" : Report logs with TRACE level and above.
  • "DEBUG" : Report logs with DEBUG level and above.
  • "INFO" : Report logs with INFO level and above.
  • "WARN" : Report logs with WARN level and above.
  • "ERROR" : Report logs with ERROR level and above.
  • "CRITICAL" : Report logs with CRITICAL level only.

Implementation

core.String? minLogLevel;