Description:PrioritizationLevel parameter sets a log level for notifications that will be recorded in the log file. 
Parameter type:String
Default value:information
Possible values:
  • none – no logs' information will be recorded to the log file;
  • fatal
  • critical – very severe error events that will presumably lead the application to abort;
  • error – error events that might still allow the application to continue running;
  • warning
  • notice
  • information – important information that should be logged under normal conditions such as successful initialization, services starting and stopping etc.;
  • debug – fine-grained informational events that are most useful to debug an application;
  • trace – more detailed code debugging information.

The log levels are ordered by their priority from the highest to the lowest accordingly. For example, if the default value for PrioritizationLevel is set to “information” then not only information notifications will be recorded in the log file but also notifications from its all the preceding log levels such as notice, warning, error, critical and fatal.

<PrioritizationLevel>information</PrioritizationLevel>

  • No labels