commit | 118962361b693cdbd1e7d0fb970b486da04187c0 | [log] [tgz] |
---|---|---|
author | Austin Schuh <austin.linux@gmail.com> | Wed Nov 17 10:07:59 2021 -0800 |
committer | Gerrit Code Review <gerrit@software.frc971.org> | Wed Nov 17 10:07:59 2021 -0800 |
tree | c0926fb88a9df9d928cb487b5d4f69b0fed9419f | |
parent | dbafa7cf5dec9699995f6e99acc6cf9a785e420a [diff] | |
parent | fb1b3291b6dcedf91fbac91a42f5ae1358bb0693 [diff] |
Merge "Stream Message objects with data properly"
diff --git a/aos/events/logging/logfile_utils.cc b/aos/events/logging/logfile_utils.cc index 9c8b7af..9c7fe5d 100644 --- a/aos/events/logging/logfile_utils.cc +++ b/aos/events/logging/logfile_utils.cc
@@ -740,7 +740,7 @@ os << "{.channel_index=" << m.channel_index << ", .queue_index=" << m.queue_index << ", .timestamp=" << m.timestamp; if (m.data != nullptr) { - os << ", .data=" << m; + os << ", .data=" << m.data; } os << "}"; return os;