From aee053c1a68b733a2bec189cee2814d12ddca751 Mon Sep 17 00:00:00 2001 From: Joao Eduardo Luis Date: Fri, 16 Aug 2013 13:51:15 -0700 Subject: [PATCH] mon: MonitorDBStore: output to derr instead of std::cout Signed-off-by: Joao Eduardo Luis --- src/mon/MonitorDBStore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mon/MonitorDBStore.h b/src/mon/MonitorDBStore.h index 276620f75164..ff1cad33bfb6 100644 --- a/src/mon/MonitorDBStore.h +++ b/src/mon/MonitorDBStore.h @@ -523,8 +523,8 @@ class MonitorDBStore LevelDBStore *db_ptr = new LevelDBStore(g_ceph_context, full_path); if (!db_ptr) { - std::cout << __func__ << " error initializing level db back storage in " - << full_path << std::endl; + derr << __func__ << " error initializing level db back storage in " + << full_path << dendl; assert(0 != "MonitorDBStore: error initializing level db back storage"); } db.reset(db_ptr); -- 2.47.3