diff --git a/ATxService/AutoTx.cs b/ATxService/AutoTx.cs
index ecc016a5e44173790b9be3e2724a9764eca31ffb..80e7f6db4bd9b223f305ef8b0ae2d88f3628ef2c 100644
--- a/ATxService/AutoTx.cs
+++ b/ATxService/AutoTx.cs
@@ -324,13 +324,12 @@ namespace ATxService
             // terminate the service process if necessary:
             if (configInvalid) throw new Exception("Invalid config, check log file!");
 
-
-            // check the clean-shutdown status and send a notification if it was not true,
+            // now check the clean-shutdown status and send a notification if it was not true,
             // then set it to false while the service is running until it is properly
             // shut down via the OnStop() method:
             if (_status.CleanShutdown == false) {
                 Log.Error("WARNING: {0} was not shut down properly last time!\n\nThis could " +
-                    "indicate the computer has crashed or was forcefully shut off.", ServiceName);
+                          "indicate the computer has crashed or was forcefully shut off.", ServiceName);
             }
             _status.CleanShutdown = false;
         }