diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for bytelog
 
+## 0.1.2.0 -- 2024-01-09
+
+* Add `chunks`.
+
 ## 0.1.1.0 -- 2020-10-21
 
 * Add `cstring#`.
diff --git a/bytelog.cabal b/bytelog.cabal
--- a/bytelog.cabal
+++ b/bytelog.cabal
@@ -1,6 +1,6 @@
 cabal-version: 2.4
 name: bytelog
-version: 0.1.1.0
+version: 0.1.2.0
 synopsis: Fast logging
 bug-reports: https://github.com/byteverse/bytelog
 license: BSD-3-Clause
diff --git a/src/Logger.hs b/src/Logger.hs
--- a/src/Logger.hs
+++ b/src/Logger.hs
@@ -12,6 +12,7 @@
     -- * Log
   , builder
   , boundedBuilder
+  , chunks
   , bytes
   , byteArray
   , cstring
@@ -119,11 +120,28 @@
 cstring# :: Logger -> Addr# -> IO ()
 cstring# g str = builder g (Builder.cstring (Ptr str))
 
+chunks :: Logger -> Chunks -> IO ()
+{-# noinline chunks #-}
+chunks logger@(Logger _ _ _ ref counterRef) ch = do
+  atomicModifyIORef' ref
+    (\cs0 ->
+      let !cs1 = Chunks.reverseOnto cs0 ch
+       in (cs1,())
+    )
+  !counter <- bumpCounter counterRef
+  when (counter >= threshold) $ do
+    -- Reset the counter
+    PM.writePrimArray counterRef 0 0
+    flush logger
+
 -- | Log the chunks that result from executing the byte builder.
 builder :: Logger -> Builder -> IO ()
 builder logger@(Logger _ _ _ ref counterRef) bldr = do
   atomicModifyIORef' ref
     (\cs0 ->
+      -- Why use reversedOnto? The chunks are arranged backwards.
+      -- in the buffer. When we flush, they get reversed and end
+      -- up in the correct order.
       let !cs1 = Builder.reversedOnto 240 bldr cs0
        in (cs1,())
     )
@@ -167,7 +185,7 @@
   Nothing -> pure ()
   Just (_ :: ()) -> do
     -- Atomically remove all logs from the batch. GHC guarantees
-    -- that this is cannot be interrupted by async exceptions
+    -- that this cannot be interrupted by async exceptions
     -- inside of mask.
     yanked <- atomicModifyIORef' ref (\cs -> (Chunks.ChunksNil,cs))
     -- When cleaning up after an exception, we put all the logs
