/
DC 5.3.0 2.5 Stdout logging in core services
DC 5.3.0 2.5 Stdout logging in core services
Sometimes one of the digizuite core (Or automation workflow) services refuses to start, in those cases the normal logger is unable to bootstrap, and you need to enable stdout logging. This is done by accessing the web.config of the individual service. The config file will look something like this out of the box:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath=".\dsl-service.exe" stdoutLogEnabled="false" stdoutLogFile="G:\LogFiles\Digizuite\mm-dam.dev.digizuite.com\Core_dsl-service_stdout" hostingModel="inprocess" />
</system.webServer>
</location>
</configuration>
To enable stdout logging change stdoutLogEnabled
to true
. This will automatically restart the service. The log file will then be available at the location stdoutLogFile
points to, with an additional timestamp attached to the file name.
Once you are done checking the log file, make sure to disable stdout logging again, as it will keep writing to that file until the disk is full, and does no automatic cleanup.
, multiple selections available,
Related content
DC 6.0 Stdout logging in core services
DC 6.0 Stdout logging in core services
More like this
DC 6.0 Logs
DC 6.0 Logs
More like this
DC 5.8 Service configuration
DC 5.8 Service configuration
More like this
DFS 10.4.0 - 14 Logging
DFS 10.4.0 - 14 Logging
More like this
DFS 11.1 - 12 Logging
DFS 11.1 - 12 Logging
More like this
DC 6.0 Automation status
DC 6.0 Automation status
More like this