Skip to content
Snippets Groups Projects
Commit c664f4f8 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Make suspend / resume messages level "TRACE"

This prevents at least the log file from being cluttered up completely
in "normal" operation. As stated in #50 the level for those messages
should be configurable to allow for easy adjustments without the need to
recompile the service itself.
parent 8c159d22
No related branches found
No related tags found
No related merge requests found
......@@ -317,9 +317,9 @@ namespace ATxCommon.Serializables
Serialize();
if (suspended) {
Log.Info("Service suspended. Reason(s): [{0}]", description);
Log.Trace("Service suspended. Reason(s): [{0}]", description);
} else {
Log.Info("Service resuming operation ({0}).", description);
Log.Trace("Service resuming operation ({0}).", description);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment