summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-01-04 00:36:24 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-01-04 00:36:24 +0000
commit2955aa00baeac9e3c0c2760091f51aca19fc9065 (patch)
tree79ad62391a15d05ff2ebe2bc4b2fd16da7e06b0c /storage
parent65df61f0c3d23ae95dbe8cb4296cc4c2d3e7fb6e (diff)
Reduce loglevel debug -> spam
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.cpp b/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.cpp
index ec8521d3ab1..1d151716bd0 100644
--- a/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.cpp
+++ b/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.cpp
@@ -1120,7 +1120,7 @@ FileStorHandlerImpl::BucketLock::BucketLock(const monitor_guard & guard, Stripe&
{
if (_bucket.getBucketId().getRawId() != 0) {
_stripe.lock(guard, _bucket, lockReq, Stripe::LockEntry(priority, msgType, msgId));
- LOG(debug, "Locked bucket %s for message %" PRIu64 " with priority %u in mode %s",
+ LOG(spam, "Locked bucket %s for message %" PRIu64 " with priority %u in mode %s",
bucket.getBucketId().toString().c_str(), msgId, priority, api::to_string(lockReq));
}
}
@@ -1129,7 +1129,7 @@ FileStorHandlerImpl::BucketLock::BucketLock(const monitor_guard & guard, Stripe&
FileStorHandlerImpl::BucketLock::~BucketLock() {
if (_bucket.getBucketId().getRawId() != 0) {
_stripe.release(_bucket, _lockReq, _uniqueMsgId);
- LOG(debug, "Unlocked bucket %s for message %" PRIu64 " in mode %s",
+ LOG(spam, "Unlocked bucket %s for message %" PRIu64 " in mode %s",
_bucket.getBucketId().toString().c_str(), _uniqueMsgId, api::to_string(_lockReq));
}
}