From b2f450f01cf2be9a2de116f13e0325f11d2be850 Mon Sep 17 00:00:00 2001 From: Lukasz Cwik Date: Wed, 31 Jan 2024 13:18:05 -0800 Subject: [PATCH] remove logging --- baseapp/abci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baseapp/abci.go b/baseapp/abci.go index 7da5e592412..e97c1ffc39b 100644 --- a/baseapp/abci.go +++ b/baseapp/abci.go @@ -1013,7 +1013,7 @@ func (app *BaseApp) workingHash() []byte { // Get the hash of all writes in order to return the apphash to the comet in finalizeBlock. commitHash := app.cms.WorkingHash() - app.logger.Debug("hash of all writes", "workingHash", fmt.Sprintf("%X", commitHash)) + //app.logger.Debug("hash of all writes", "workingHash", fmt.Sprintf("%X", commitHash)) return commitHash }