summaryrefslogtreecommitdiff
path: root/ovsdb
diff options
context:
space:
mode:
Diffstat (limited to 'ovsdb')
-rw-r--r--ovsdb/raft.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ovsdb/raft.c b/ovsdb/raft.c
index f9fa6443b..856d083f2 100644
--- a/ovsdb/raft.c
+++ b/ovsdb/raft.c
@@ -2285,8 +2285,12 @@ raft_command_initiate(struct raft *raft,
static void
log_all_commands(struct raft *raft)
{
+ if (!VLOG_IS_DBG_ENABLED()) {
+ return;
+ }
+
struct raft_command *cmd;
- HMAP_FOR_EACH_SAFE (cmd, hmap_node, &raft->commands) {
+ HMAP_FOR_EACH (cmd, hmap_node, &raft->commands) {
VLOG_DBG("raft command eid: "UUID_FMT, UUID_ARGS(&cmd->eid));
}
}