aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@verizonmedia.com>2020-07-22 14:17:40 +0000
committerTor Brede Vekterli <vekterli@verizonmedia.com>2020-07-22 14:21:11 +0000
commite435910e72a8c596e13cb575f28cc40a5e3012a7 (patch)
tree07fc9ebb1ea1d7b4a37a2ef6508115cae37804d9
parent7973c1ec0805711dd568e46c59e7b99bb36696dc (diff)
Don't verbose print documents on debug log level
Causes way too much output to be useful. Move to separate logging that is only visible at spam level.
-rw-r--r--storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp b/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp
index 43cf43b02b6..73788d0affe 100644
--- a/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp
+++ b/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp
@@ -277,8 +277,8 @@ TwoPhaseUpdateOperation::schedulePutsWithUpdatedDocument(std::shared_ptr<documen
op.start(intermediate, _manager.getClock().getTimeInMillis());
transitionTo(SendState::PUTS_SENT);
- LOG(debug, "Update(%s): sending Put commands with doc %s",
- update_doc_id().c_str(), doc->toString(true).c_str());
+ LOG(debug, "Update(%s): sending Puts at timestamp %" PRIu64, update_doc_id().c_str(), putTimestamp);
+ LOG(spam, "Update(%s): Put document is: %s", update_doc_id().c_str(), doc->toString(true).c_str());
if (intermediate._reply.get()) {
sendReplyWithResult(sender, intermediate._reply->getResult());