]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
common/LogEntry: remove addrs from log entry operator<<
authorSage Weil <sage@redhat.com>
Sun, 27 May 2018 22:23:45 +0000 (17:23 -0500)
committerSage Weil <sage@redhat.com>
Sun, 27 May 2018 22:26:26 +0000 (17:26 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/common/LogEntry.h

index 3eb8446f07f6dfff75c6fa62e1cad3a5986387ca..2501faf0437e4ec2c5db81776f66a8e07d48311e 100644 (file)
@@ -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;
 }