From: Joao Eduardo Luis Date: Fri, 16 Aug 2013 20:51:15 +0000 (-0700) Subject: mon: MonitorDBStore: output to derr instead of std::cout X-Git-Tag: v0.69~48^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=aee053c1a68b733a2bec189cee2814d12ddca751;p=ceph.git mon: MonitorDBStore: output to derr instead of std::cout Signed-off-by: Joao Eduardo Luis --- 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);