]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: use derr (instead of cerr) for convertfs
authorSage Weil <sage@inktank.com>
Tue, 19 Jun 2012 17:12:40 +0000 (10:12 -0700)
committerSage Weil <sage@inktank.com>
Tue, 19 Jun 2012 17:12:40 +0000 (10:12 -0700)
This will appear in the log *and* stderr (if we're running in the
foreground).

Signed-off-by: Sage Weil <sage@inktank.com>
src/osd/OSD.cc

index 5a59ed76ee680b7f307661c88e1934e5402f77fe..9c73020aafca13fc9efa61b56b87244c753fc224 100644 (file)
@@ -270,13 +270,13 @@ int OSD::do_convertfs(ObjectStore *store)
       derr << "collection " << *i << " updated" << dendl;
     }
   }
-  cerr << "All collections up to date, updating version stamp..." << std::endl;
+  derr << "All collections up to date, updating version stamp..." << dendl;
   r = store->update_version_stamp();
   if (r < 0)
     return r;
   store->sync_and_flush();
   store->sync();
-  cerr << "Version stamp updated, done!" << std::endl;
+  derr << "Version stamp updated, done with upgrade!" << dendl;
   return store->umount();
 }