Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To update the log level for a running program according to the request body. Currently supported program types are Service and Worker. The request body is expected to contain a map of log levels, where key is loggername, and value is one of (FATAL, ERROR, WARN, INFO, DEBUG, TRACE).

...

Parameter

Description

loggername

Name of the logger.

loglevels

Log level (FATAL, ERROR, WARN, INFO, DEBUG, TRACE)

For example, if we pass the JSON input:
{
“appLogger”: “DEBUG”
}
”appLogger” is the loggername, and “DEBUG” is the log level.

Resetting Program Log Levels

...