summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoao Eduardo Luis <joao.luis@inktank.com>2012-11-23 14:23:05 +0000
committerJoao Eduardo Luis <joao.luis@inktank.com>2012-11-23 19:13:03 +0000
commit7527a1ea6cd70a6cd94b8a21b07a211ab5c4de74 (patch)
treec10ea02696f520c881acea3effabcaf5fa3a89c1
parentdeabdc8a105639675a9fbafbcf0319c3bae8917e (diff)
downloadceph-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.cc3
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;
}
}