From: Joao Eduardo Luis Date: Fri, 23 Nov 2012 14:23:05 +0000 (+0000) Subject: auth: Keyring: increase log levels when logging secrets X-Git-Tag: v0.55~57^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7527a1ea6cd70a6cd94b8a21b07a211ab5c4de74;p=ceph.git auth: Keyring: increase log levels when logging secrets Fixes: #3361 Signed-off-by: Joao Eduardo Luis --- diff --git a/src/auth/KeyRing.cc b/src/auth/KeyRing.cc index ad23922d625f..96dba74a043e 100644 --- a/src/auth/KeyRing.cc +++ b/src/auth/KeyRing.cc @@ -236,7 +236,8 @@ void KeyRing::import(CephContext *cct, KeyRing& other) for (map::iterator p = other.keys.begin(); p != other.keys.end(); ++p) { - ldout(cct, 10) << " importing " << p->first << " " << p->second << dendl; + ldout(cct, 10) << " importing " << p->first << dendl; + ldout(cct, 30) << " " << p->second << dendl; keys[p->first] = p->second; } }