You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 13, 2018. It is now read-only.
With the current configuration the default logging level is WARN except for the core module/package. Specifically, modify the following log4j.properties such that we have INFO log levels across all modules/packages in Traffic Router. This is required for visibility for operations – currently we're unable to tell whether or not we're reloading the Neustar database upon download, and if so when.
# Set root logger level to DEBUG and its only appender to A1.
# Valid levels are: ALL, TRACE, DEBUG, INFO, WARN, ERROR, FATAL, NONE
log4j.rootLogger=WARN, A1
# Set application logger levels
log4j.logger.com.comcast.cdn.traffic_control.traffic_router.core=INFO
The text was updated successfully, but these errors were encountered:
Traffic Router now logs at the INFO level for any packages and classes under the com.comcast.cdn.traffic_control.traffic_router package. Since we are logging info for all classes under the traffic_router package we no longer need the individual package config.
This fixes#1498
With the current configuration the default logging level is
WARN
except for the core module/package. Specifically, modify the followinglog4j.properties
such that we haveINFO
log levels across all modules/packages in Traffic Router. This is required for visibility for operations – currently we're unable to tell whether or not we're reloading the Neustar database upon download, and if so when.The text was updated successfully, but these errors were encountered: