From e41eef9d19fe3a3ab9b158c985b180a3f76f93f7 Mon Sep 17 00:00:00 2001 From: Determinant Date: Tue, 7 Aug 2018 20:41:53 -0400 Subject: fix bugs --- include/hotstuff/entity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/hotstuff/entity.h') diff --git a/include/hotstuff/entity.h b/include/hotstuff/entity.h index ce7d9bf..29300a9 100644 --- a/include/hotstuff/entity.h +++ b/include/hotstuff/entity.h @@ -224,7 +224,7 @@ class EntityStorage { block_t add_blk(Block &&_blk, const ReplicaConfig &config) { if (!_blk.verify(config)) { - HOTSTUFF_LOG_WARN("block is invalid"); + HOTSTUFF_LOG_WARN("invalid %s", std::string(_blk).c_str()); return nullptr; } block_t blk = new Block(std::move(_blk)); -- cgit v1.2.3