From 66077b172200519c736e3ab1a20bf02cbd426eac Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 24 Mar 2025 15:49:03 -0700 Subject: [PATCH 1/2] chainio: demote per-block logging to Debugf --- chainio/dispatcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chainio/dispatcher.go b/chainio/dispatcher.go index 3f22948bd..f1fce35b5 100644 --- a/chainio/dispatcher.go +++ b/chainio/dispatcher.go @@ -162,7 +162,7 @@ func (b *BlockbeatDispatcher) dispatchBlocks( // new block arrives for subsystems. clog.Debugf("%v", lnutils.NewSeparatorClosure()) - clog.Infof("Received new block %v at height %d, "+ + clog.Debugf("Received new block %v at height %d, "+ "notifying consumers...", blockEpoch.Hash, blockEpoch.Height) @@ -179,7 +179,7 @@ func (b *BlockbeatDispatcher) dispatchBlocks( b.log().Errorf("Notify block failed: %v", err) } - b.log().Infof("Notified all consumers on new block "+ + b.log().Debugf("Notified all consumers on new block "+ "in %v", time.Since(start)) // A query has been made to fetch the current height, we now From 5b93319aaaa36798f09dd6bb07d7a272aa831bb2 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 20 Mar 2025 15:57:49 -0700 Subject: [PATCH 2/2] build: bump version to v0.19 rc1 --- build/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/version.go b/build/version.go index c3db5dc70..d15e652fb 100644 --- a/build/version.go +++ b/build/version.go @@ -44,14 +44,14 @@ const ( AppMajor uint = 0 // AppMinor defines the minor version of this binary. - AppMinor uint = 18 + AppMinor uint = 19 // AppPatch defines the application patch for this binary. - AppPatch uint = 99 + AppPatch uint = 00 // AppPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec. - AppPreRelease = "beta" + AppPreRelease = "beta.rc1" ) func init() {