Enabling Diagnostics Logging - Diagnostics Service and Diagnostics Console - English - Foundation 22.1 - OnBase - external

Diagnostics Service and Diagnostics Console

Platform
OnBase
Product
Diagnostics Service and Diagnostics Console
Release
Foundation 22.1
License

In order for an application to send diagnostics messages to the Diagnostics Service and Diagnostics Console, a logging route must be configured in the Hyland.Logging section of the application's .config file.

By default, all logging profiles are logged to the configured route. You can configure the route to include or exclude specific profiles.

Use the include-profiles key in a route to enable logging only for specific profiles. List the included profile names in a comma-separated, case-sensitive list in the value attribute of the key. For example:

<add key="include-profiles" value="example1,example2" />
Note:

Any profiles not listed in the include-profiles key will not be logged.

Use the exclude-profiles key in a route to disable logging for specific profiles. List the excluded profile names in a comma-separated, case-sensitive list in the value attribute of the key. For example:

<add key="exclude-profiles" value="example1,example2" />
Note:

Any profiles not listed in the exclude-profiles key will be logged. Also, the include-profile key overrides the exclude-profiles key, so if a profile is listed in both keys, it will be logged.