diff options
author | Joao Eduardo Luis <joao.luis@inktank.com> | 2012-11-23 14:23:05 +0000 |
---|---|---|
committer | Joao Eduardo Luis <joao.luis@inktank.com> | 2012-11-23 19:13:03 +0000 |
commit | 7527a1ea6cd70a6cd94b8a21b07a211ab5c4de74 (patch) | |
tree | c10ea02696f520c881acea3effabcaf5fa3a89c1 | |
parent | deabdc8a105639675a9fbafbcf0319c3bae8917e (diff) | |
download | ceph-7527a1ea6cd70a6cd94b8a21b07a211ab5c4de74.tar.gz |
auth: Keyring: increase log levels when logging secrets
Fixes: #3361
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
-rw-r--r-- | src/auth/KeyRing.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/auth/KeyRing.cc b/src/auth/KeyRing.cc index ad23922d625..96dba74a043 100644 --- a/src/auth/KeyRing.cc +++ b/src/auth/KeyRing.cc @@ -236,7 +236,8 @@ void KeyRing::import(CephContext *cct, KeyRing& other) for (map<EntityName, EntityAuth>::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; } } |