From d9f52a2e3360107266736b80a337387b7fb998bf Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sun, 27 May 2018 17:23:45 -0500 Subject: [PATCH] common/LogEntry: remove addrs from log entry operator<< Signed-off-by: Sage Weil --- src/common/LogEntry.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/LogEntry.h b/src/common/LogEntry.h index 3eb8446f07f..2501faf0437 100644 --- a/src/common/LogEntry.h +++ b/src/common/LogEntry.h @@ -171,8 +171,8 @@ inline ostream& operator<<(ostream& out, const clog_type t) inline ostream& operator<<(ostream& out, const LogEntry& e) { - return out << e.stamp << " " << e.name << " (" << e.rank - << " " << e.addrs << ") " << e.seq << " : " + return out << e.stamp << " " << e.name << " (" << e.rank << ") " + << e.seq << " : " << e.channel << " " << e.prio << " " << e.msg; } -- 2.39.5