Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Logging Targets

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

...

Log Types

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

  • Debug
  • Info
  • Warn
  • Error
  • Fatal

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

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

You can also enable the debug events on To change the logging level for a specific logging target by setting the levelMin on them.target,  change levelMin for that target.

Appenders

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