summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2019-07-22 17:01:16 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2019-07-22 17:01:16 +0200
commitbf855bbc0752c75aa0f4ab961db40e7ffcc4a749 (patch)
tree08a3cfece081212b86830198fbae0053a8471b5a
parent98b75a2c81108ac8461f9c9934080171d9a68bdc (diff)
ptalog: common output format
-rw-r--r--include/object/ptalog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/object/ptalog.h b/include/object/ptalog.h
index e9694d2..70e9664 100644
--- a/include/object/ptalog.h
+++ b/include/object/ptalog.h
@@ -68,7 +68,7 @@ class PTALog {
void dump(uint16_t trace_id)
{
- kout << "[PTA] trace=" << dec << trace_id << ", count=" << log_index << endl;
+ kout << "[PTA] trace=" << dec << trace_id << " count=" << log_index << endl;
for (uint8_t i = 0; i < log_index; i++) {
#ifdef PTALOG_TIMING
kout << "[PTA] transition=" << log[i].transition_id;