diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
 
+## [1.1.2] - 2024-05-23
+
+### Fixed
+
+- Correct log messages from peer manager.
+
 ## [1.1.1] - 2024-05-23
 
 ### Fixed
diff --git a/haskoin-node.cabal b/haskoin-node.cabal
--- a/haskoin-node.cabal
+++ b/haskoin-node.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 6ebc00893fdda0acec1914efa6cf0ba854448b0db92dfd5e464b4d979853592e
+-- hash: f9da60a901490032b5ae1b55fffedce7aa9ec901f923378f4994a69b7c2f0eab
 
 name:           haskoin-node
-version:        1.1.1
+version:        1.1.2
 synopsis:       P2P library for Bitcoin and Bitcoin Cash
 description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-node#readme>
 category:       Bitcoin, Finance, Network
diff --git a/src/Haskoin/Node/PeerMgr.hs b/src/Haskoin/Node/PeerMgr.hs
--- a/src/Haskoin/Node/PeerMgr.hs
+++ b/src/Haskoin/Node/PeerMgr.hs
@@ -382,7 +382,7 @@
 dispatch (PeerDied a e) = do
   processPeerOffline a e
 dispatch (CheckPeer p) = do
-  $(logDebugS) "PeerManager" $
+  $(logDebugS) "PeerMgr" $
     "Housekeeping for peer " <> p.label
   checkPeer p
 
@@ -426,7 +426,7 @@
           n <- liftIO randomIO
           now <- liftIO getCurrentTime
           atomically (setPeerPing b n now p)
-          $(logDebugS) " PeerManager" $
+          $(logDebugS) "PeerMgr" $
             "Sending ping "
               <> cs (show n)
               <> " to: "
