A user can change the log level of multiple loggers (given by logger list) for a specific application (given by application name).
LOG_FATAL: Logs only those messages in which the system is unusable.
LOG_ERROR: Logs only those messages that indicate error conditions.
LOG_WARN: Logs only those messages that are warnings or more serious messages. This is the default level of debug information.
LOG_INFO: Logs all informational messages and more serious messages. (Default log level)
A logger (see What are the Symphony loggers?) could be named by component class name such as sim.backend or category name such as workload.
Run the soamlog command. This runtime change just has one-time effect. The log level will persist during the lifetime of a daemon. The ideal use case for this command is to log debug information for "live" processes.
Change the EGO_LOG_MASK value to one of the following log levels:
LOG_EMERG: Only logs messages indicating that the system is unusable.
LOG_ALERT: Only logs messages indicating that an action must be taken immediately.
LOG_WARNING: Only logs warning or more serious messages. (Default log level)
LOG_NOTICE: Logs messages indicating normal but significant conditions or warnings and more serious messages.
LOG_INFO: Logs all informational messages and more serious messages.
Run the following command for the appropriate daemon:
LIM: egosh debug limon [all | host_list]
Instead of specifying all, you can also specify which hosts the logging for this daemon should be turned on for.
PEM: egosh debug pemon [all | host_list]
Instead of specifying all, you can also specify which hosts the logging for this daemon should be turned on for.