Versions Compared

Key

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

...

The services covered by this document is are the services in the DigizuiteCore and the AutomationWorkflows folder.

...

Option name

Description

LogLevel

How much log logging there should be included. Valid values are:

  • Critical

  • Error

  • Warning

  • Information

  • Debug

  • Trace

with each level logging more information.

Overrides

A dictionary that can be used to change the log level of certain namespaces. Usually not something you need to change.

For example:

Code Block
"Overrides": {
    "Microsoft.EntityFrameworkCore": "Warning"
},

Reduces the LogLevel of Entity Framework to Warning, rather than the normal log level set for the rest of the service. Multiple keys can be provided.

EnabledCentralizedLogger

If the centrailized centralized logging mechanic should be enabled. This has to be enabled to be able to pull logs directly from Media Manager.

LocalLogPath

The path where the service should attempt to log it’s own logs , if local logging is enabled. This does not cleanup clean up after itself, so this should only be enabled for the sake of debugging, and should be turned of off once done.

EnableLocalLogging

If local logging should be enabled. Same The same warning as above applies. Both this and LocalLogPath has to be set, for the local logging to occur.

...

There are certain times when the applications fails fail to start completely (Usually due to some problem with the environment), in this case, it can be useful to go into the Web.Config file for the service, and enable stdout logging. One should be careful to disable this, once the service is up and running again, as it doesn’t cleanup clean up after itself, so it can risk filling the disk.