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

Put startup summary into a separate method.

parent 8104d673
No related branches found
No related tags found
No related merge requests found
...@@ -173,8 +173,13 @@ namespace AutoTx ...@@ -173,8 +173,13 @@ namespace AutoTx
} }
_status.CleanShutdown = false; _status.CleanShutdown = false;
StartupSummary();
}
// print a summary of loaded config + status to the log: /// <summary>
/// Write a summary of loaded config + status to the log.
/// </summary>
private void StartupSummary() {
writeLogDebug("------ RoboSharp ------"); writeLogDebug("------ RoboSharp ------");
var roboDll = System.Reflection.Assembly.GetAssembly(typeof(RoboCommand)).Location; var roboDll = System.Reflection.Assembly.GetAssembly(typeof(RoboCommand)).Location;
if (roboDll != null) { if (roboDll != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment