diff options
author | Sage Weil <sage@newdream.net> | 2010-04-20 19:39:23 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-04-20 19:39:23 +0200 |
commit | f7f6daf1d23e2d603b244120d58cbfbba2efd3b8 (patch) | |
tree | 2a7326aed2a0b1b6392c8efb40b31ed674043e51 /src/auth/RotatingKeyRing.cc | |
parent | mds: drop mutation locks (diff) | |
download | ceph-f7f6daf1d23e2d603b244120d58cbfbba2efd3b8.tar.xz ceph-f7f6daf1d23e2d603b244120d58cbfbba2efd3b8.zip |
auth: less noisy debug
Diffstat (limited to 'src/auth/RotatingKeyRing.cc')
-rw-r--r-- | src/auth/RotatingKeyRing.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auth/RotatingKeyRing.cc b/src/auth/RotatingKeyRing.cc index 47349655a93..725b558b7cf 100644 --- a/src/auth/RotatingKeyRing.cc +++ b/src/auth/RotatingKeyRing.cc @@ -33,11 +33,11 @@ void RotatingKeyRing::set_secrets(RotatingSecrets& s) void RotatingKeyRing::dump_rotating() { - dout(0) << "dump_rotating:" << dendl; + dout(10) << "dump_rotating:" << dendl; for (map<uint64_t, ExpiringCryptoKey>::iterator iter = secrets.secrets.begin(); iter != secrets.secrets.end(); ++iter) - dout(0) << " id " << iter->first << " " << iter->second << dendl; + dout(10) << " id " << iter->first << " " << iter->second << dendl; } bool RotatingKeyRing::get_secret(EntityName& name, CryptoKey& secret) |