1 parent ca59da4 commit 1fed12fCopy full SHA for 1fed12f
1 file changed
src/Event.cpp
@@ -70,11 +70,13 @@ std::string Event::toString() const
70
ss << std::setw(8) << std::hex << getHash() << "\"";
71
else
72
ss << std::setw(16) << std::hex << getHash() << "\"";
73
+
74
+ ss << std::dec;
75
}
76
77
if (getType() == BLOCK_INFO) {
78
ss << ", \"offset\":" << getOffset();
- ss << ", \"skipFlags\": ";
79
+ ss << ", \"skipFlags\":";
80
81
for (int i = 128; i >= 1; i >>= 1)
82
ss << ((_skipFlags & i) == 0 ? "0" : "1");
0 commit comments