Austin Schuh | 2dc8c7d | 2021-07-01 17:41:28 -0700 | [diff] [blame^] | 1 | #include "aos/events/logging/boot_timestamp.h" |
2 | |||||
3 | #include <iostream> | ||||
4 | |||||
5 | #include "aos/time/time.h" | ||||
6 | |||||
7 | namespace aos::logger { | ||||
8 | std::ostream &operator<<(std::ostream &os, | ||||
9 | const struct BootTimestamp ×tamp) { | ||||
10 | return os << "{.boot=" << timestamp.boot << ", .time=" << timestamp.time | ||||
11 | << "}"; | ||||
12 | } | ||||
13 | |||||
14 | } // namespace aos::logger |