Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Logging is configured in the "log4net.config" file located in the home directory.

Logging Targets

By default, Tasxs logs to the Windows Event Log and to its own log file located in the configured log directory.

Log Types

By default, only info up to fatal events are being logged. The following types are the log level types

  • Debug
  • Info
  • Warn
  • Error
  • Fatal

To enable debug logging, for all logging targets, set the log level to Debug on the root logger.

  <root>
    <level value="DEBUG" />
    <appender-ref ref="FileAppender" />
    <appender-ref ref="EventLogAppender" />
  </root>

To change the logging level for a specific target,  change levelMin for that target.

Appenders

  • EventLogAppender - Writes logs to the Windows Event Log
  • FileAppender - Writes logs to the Tasxs log file
  • No labels