From: Dan Mick Date: Wed, 10 Jul 2013 23:48:09 +0000 (-0700) Subject: mon: AuthMonitor: improve error reporting for import X-Git-Tag: v0.67-rc1~102 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e76b05b937e82178b5de28ccd5ca3ca783d85a4a;p=ceph.git mon: AuthMonitor: improve error reporting for import Signed-off-by: Dan Mick --- diff --git a/src/mon/AuthMonitor.cc b/src/mon/AuthMonitor.cc index c328d0c56ba8..b812a049d39b 100644 --- a/src/mon/AuthMonitor.cc +++ b/src/mon/AuthMonitor.cc @@ -714,7 +714,7 @@ bool AuthMonitor::prepare_command(MMonCommand *m) try { ::decode(keyring, iter); } catch (const buffer::error &ex) { - ss << "error decoding keyring"; + ss << "error decoding keyring" << " " << ex.what(); rs = err; goto done; }