From: John Spray Date: Tue, 11 Feb 2014 18:18:54 +0000 (+0000) Subject: mds: Table read failure should log at error level X-Git-Tag: v0.79~196^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1265%2Fhead;p=ceph.git mds: Table read failure should log at error level Signed-off-by: John Spray --- diff --git a/src/mds/MDSTable.cc b/src/mds/MDSTable.cc index ef0326dfbd37..27d78ce28785 100644 --- a/src/mds/MDSTable.cc +++ b/src/mds/MDSTable.cc @@ -148,7 +148,7 @@ void MDSTable::load_2(int r, bufferlist& bl, Context *onfinish) return; } if (r < 0) { - dout(10) << "load_2 could not read table: " << r << dendl; + derr << "load_2 could not read table: " << r << dendl; assert(r >= 0); }