aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@verizonmedia.com>2020-07-23 09:48:01 +0200
committerGitHub <noreply@github.com>2020-07-23 09:48:01 +0200
commitbc4184b83b807af9962ac216afb85f61449c4bbc (patch)
treedeae9cbd95518396631e1de24e8fec663f2a0c56
parent48a01c4ca475a6601f66cc1d0e06a8f3d5f819b5 (diff)
parente435910e72a8c596e13cb575f28cc40a5e3012a7 (diff)
Merge pull request #13938 from vespa-engine/vekterli/no-verbose-doc-printing-when-debug-logging-updates
Don't verbose print documents at debug log 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());