blob: c037633337056cfa021975789ae04f85179cd881 [file] [log] [blame]
Austin Schuh2dc8c7d2021-07-01 17:41:28 -07001#include "aos/events/logging/boot_timestamp.h"
2
3#include <iostream>
4
5#include "aos/time/time.h"
6
7namespace aos::logger {
8std::ostream &operator<<(std::ostream &os,
9 const struct BootTimestamp &timestamp) {
10 return os << "{.boot=" << timestamp.boot << ", .time=" << timestamp.time
11 << "}";
12}
13
14} // namespace aos::logger