Logging

The Downloader service logs to both console output and the Windows event log. To monitor the former, stop the service and run the FuseIT.Downloader.Service.exe executable directly.

The log level may be changed in the appsettings.json file:

"Logging": { "LogLevel": { "Default": "Debug", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information" }, "EventLog": { "LogLevel": { "Default": "Information", "Microsoft": "Warning" } } }

The LogLevel property controls console output, EventLog controls the Windows event log output. Available levels are defined here.