summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libperfmgr/HintManager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libperfmgr/HintManager.cc b/libperfmgr/HintManager.cc
index cdce043d..caa75758 100644
--- a/libperfmgr/HintManager.cc
+++ b/libperfmgr/HintManager.cc
@@ -225,8 +225,8 @@ std::vector<std::unique_ptr<Node>> HintManager::ParseNodes(
} else {
reset = nodes[i]["ResetOnInit"].asBool();
}
- LOG(VERBOSE) << "Node[" << i << "]'s ResetOnInit: " << reset ? "true"
- : "false";
+ LOG(VERBOSE) << "Node[" << i
+ << "]'s ResetOnInit: " << (reset ? "true" : "false");
bool is_file = true;
std::string node_type = nodes[i]["Type"].asString();