aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-12-20 23:36:01 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-12-20 23:36:01 +0000
commit727be310fbae89a0cd5c77eb57621847a94ce129 (patch)
tree5673fb13cc2b7e1913facaffdd31a705d480e577 /storage/src
parent0b3446970f950af908ac2867909a4a46d3eb583d (diff)
Add debug logging to StorageLink::close
Diffstat (limited to 'storage/src')
-rw-r--r--storage/src/vespa/storage/common/storagelink.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/src/vespa/storage/common/storagelink.cpp b/storage/src/vespa/storage/common/storagelink.cpp
index fe753d9c350..5917fde4a15 100644
--- a/storage/src/vespa/storage/common/storagelink.cpp
+++ b/storage/src/vespa/storage/common/storagelink.cpp
@@ -74,10 +74,12 @@ void StorageLink::doneInit()
void StorageLink::close()
{
_state = CLOSING;
+ LOG(debug, "Start close link %s.", toString().c_str());
onClose();
if (!isBottom()) {
_down->close();
}
+ LOG(debug, "End close link %s.", toString().c_str());
}
void StorageLink::closeNextLink() {