Setting the log level for an Edge component

Edge for Private Cloud v. 4.17.05

By default, Edge components use a logging level of INFO. However, you can set the logging level for each Edge component. For example, you might want to set it to DEBUG for the Message Processor, or to ERROR for the Management Server.

The available log levels are: ALL, DEBUG, ERROR, FATAL, INFO, OFF, TRACE, WARN.

To set the log level for the component, you have to edit the component's properties file to set a token, then restart the components:

  • For the Edge UI, the tokens are conf_logger_settings_application_log_level and conf_logger_settings_play_log_level. Set them to the same value.
  • For all other Edge components, the token is conf_system_log.level

To set the log level for the Edge UI:

  1. Open /opt/apigee/customer/application/ui.properties in an editor. If the file does not exist, create it.
  2. Set the following properties in ui.properties to the desired log level. For example, to set it to DEBUG:
    conf_logger_settings_application_log_level=DEBUG
    conf_logger_settings_play_log_level=DEBUG
  3. Save the file.
  4. Make sure the properties file is owned by the 'apigee' user:
    > chown apigee:apigee /opt/apigee/customer/application/ui.properties
  5. Restart the Edge UI:
    /opt/apigee/apigee-service/bin/apigee-service edge-ui restart

To set the log level for other components, such as the Message Processor:

  1. Open /opt/apigee/customer/application/message-processor.properties in an editor. If the file does not exist, create it.
  2. Set the following property in message-processor.properties to the desired log level. For example, to set it to DEBUG:
    conf_system_log.level=DEBUG
  3. Save the file.
  4. Make sure the properties file is owned by the 'apigee' user:
    > chown apigee:apigee /opt/apigee/customer/application/message-processor.properties
  5. Restart the Message Processor:
    /opt/apigee/apigee-service/bin/apigee-service edge-message-processor restart