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

Version 1 Next »

Event logging configuration are set in "log4net.config" file located on the home directory.

Logging Targets

By default, Tasxs logs its events to Windows Event Log and to its own log file located on the home directory as well.

Event Log Types

The following are the different types of event logs and by default, only info up to fatal events are being logged.

  • Debug
  • Info
  • Warn
  • Error
  • Fatal

If you like to enable debug events for all logging targets, you can just set the level to Debug on the root logger.

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

You can also enable the debug events on a specific logging target by setting the levelMin on them.

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