summaryrefslogtreecommitdiff
path: root/items.c
diff options
context:
space:
mode:
authorTharanga Gamaethige <tgamaethige@netflix.com>2019-08-14 13:18:07 -0700
committerdormando <dormando@rydia.net>2019-08-27 17:11:06 -0700
commit723ca8bc38ea0194605a0b2cb54cd42737c46dc3 (patch)
tree8163166fb325eeb5c677c45b8e6558af31bbac23 /items.c
parentdc41d4fa76bc23d81eb81dcad3a12a8e9241dcd2 (diff)
downloadmemcached-723ca8bc38ea0194605a0b2cb54cd42737c46dc3.tar.gz
log client connection id with fetchers and mutations
you can now monitor fetch and mutations of a given client
Diffstat (limited to 'items.c')
-rw-r--r--items.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/items.c b/items.c
index 16a8707..f893862 100644
--- a/items.c
+++ b/items.c
@@ -1036,7 +1036,7 @@ item *do_item_get(const char *key, const size_t nkey, const uint32_t hv, conn *c
fprintf(stderr, "\n");
/* For now this is in addition to the above verbose logging. */
LOGGER_LOG(c->thread->l, LOG_FETCHERS, LOGGER_ITEM_GET, NULL, was_found, key, nkey,
- (it) ? ITEM_clsid(it) : 0);
+ (it) ? ITEM_clsid(it) : 0, c->sfd);
return it;
}