diff --git a/src/metabase/async/streaming_response.clj b/src/metabase/async/streaming_response.clj
index 3defd336ec04359d74ba658969e914eb385c7e9f..f430895600d29baeb5b0ea82a62f7bce1dc52601 100644
--- a/src/metabase/async/streaming_response.clj
+++ b/src/metabase/async/streaming_response.clj
@@ -162,7 +162,7 @@
     (let [poll-timeout-chan (a/timeout async-cancellation-poll-interval-ms)
           [_ port]          (a/alts! [poll-timeout-chan finished-chan])]
       (when (= port poll-timeout-chan)
-        (log/tracef "Checking cancelation status after waiting %s")
+        (log/tracef "Checking cancelation status after waiting %s" (u/format-milliseconds async-cancellation-poll-interval-ms))
         (let [canceled-status-chan (async.u/cancelable-thread (canceled? request))
               status-timeout-chan  (a/timeout async-cancellation-poll-timeout-ms)
               [canceled? port]     (a/alts! [finished-chan canceled-status-chan status-timeout-chan])]