diff --git a/core-telemetry.cabal b/core-telemetry.cabal
--- a/core-telemetry.cabal
+++ b/core-telemetry.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           core-telemetry
-version:        0.1.9.1
+version:        0.1.9.2
 synopsis:       Advanced telemetry
 description:    This is part of a library to help build command-line programs, both tools and
                 longer-running daemons.
@@ -54,7 +54,7 @@
     , bytestring
     , chronologique
     , core-data >=0.2.1.11
-    , core-program >=0.3.4
+    , core-program >=0.4.4
     , core-text >=0.3.5
     , exceptions
     , http-streams
diff --git a/lib/Core/Telemetry/Console.hs b/lib/Core/Telemetry/Console.hs
--- a/lib/Core/Telemetry/Console.hs
+++ b/lib/Core/Telemetry/Console.hs
@@ -81,6 +81,7 @@
                 formatLogMessage
                     start
                     now
+                    True
                     SeverityInternal
                     text
         atomically $ do
diff --git a/lib/Core/Telemetry/Honeycomb.hs b/lib/Core/Telemetry/Honeycomb.hs
--- a/lib/Core/Telemetry/Honeycomb.hs
+++ b/lib/Core/Telemetry/Honeycomb.hs
@@ -256,7 +256,7 @@
             )
 
     q = buildRequest1 $ do
-        http POST (C.append "/1/batch/" (fromRope dataset))
+        http POST (fromRope ("/1/batch/" <> dataset))
         setContentType "application/json"
         setHeader "X-Honeycomb-Team" (fromRope (apikey))
 
