diff --git a/src/tempus/Tempus.py b/src/tempus/Tempus.py
index 4316dd6c17a237142f4fb3c56ad7cd904e9eaee8..a0d74ae3c64ca66f5de79445133070d10c4ff0eb 100644
--- a/src/tempus/Tempus.py
+++ b/src/tempus/Tempus.py
@@ -230,8 +230,13 @@ class Tempus(Device):
     async def resetFastLinks(self):
         initial_state = self.state
         self.state = State.CHANGING
-        self.commandLog = (
-            "#### Resetting fast-links ####\nThis will take about 30 s.")
+        if not self.enableMultiLink:
+            self.commandLog = (
+                "#### Resetting fast-links ####\nThis will take about 30 s.")
+        else:
+            self.commandLog = (
+                "#### Resetting fast-links (multi-link) ####\nThis will take about 60 s.")
+
         self.background_task = background(self._reset_fast_links(initial_state))
 
     async def _reset_fast_links(self, initial_state):