From: Greg Farnum Date: Mon, 7 Jul 2014 19:46:16 +0000 (-0700) Subject: OSD: fix debug logging output X-Git-Tag: v0.84~140 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=aa1be2e3061bd1b6f13b5455d74f659682482746;p=ceph.git OSD: fix debug logging output The snapmapper and infos statements were backwards. Now they aren't. Signed-off-by: Greg Farnum --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 4dbd570f66f..f6055dbdfd6 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -1226,7 +1226,7 @@ int OSD::init() // make sure info object exists if (!store->exists(coll_t::META_COLL, service.infos_oid)) { - dout(10) << "init creating/touching snapmapper object" << dendl; + dout(10) << "init creating/touching infos object" << dendl; ObjectStore::Transaction t; t.touch(coll_t::META_COLL, service.infos_oid); r = store->apply_transaction(t); @@ -1236,7 +1236,7 @@ int OSD::init() // make sure snap mapper object exists if (!store->exists(coll_t::META_COLL, OSD::make_snapmapper_oid())) { - dout(10) << "init creating/touching infos object" << dendl; + dout(10) << "init creating/touching snapmapper object" << dendl; ObjectStore::Transaction t; t.touch(coll_t::META_COLL, OSD::make_snapmapper_oid()); r = store->apply_transaction(t);