aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcache.cpp
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2021-10-01 13:29:02 +0200
committerPer Larsson <[email protected]>2021-10-01 13:29:02 +0200
commit82a032af24dfefa508c384536e6b5b7dbe65ccb8 (patch)
treedf19f51bc87532061fe3f2c918722f47abaca86c /zenserver/cache/structuredcache.cpp
parentAdded upstream cache perf metrics. (diff)
downloadzen-82a032af24dfefa508c384536e6b5b7dbe65ccb8.tar.xz
zen-82a032af24dfefa508c384536e6b5b7dbe65ccb8.zip
Improved error handling for upstream endpoints.
Diffstat (limited to 'zenserver/cache/structuredcache.cpp')
-rw-r--r--zenserver/cache/structuredcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenserver/cache/structuredcache.cpp b/zenserver/cache/structuredcache.cpp
index dc96aecae..e45a26fb9 100644
--- a/zenserver/cache/structuredcache.cpp
+++ b/zenserver/cache/structuredcache.cpp
@@ -712,7 +712,7 @@ HttpStructuredCacheService::HandleGetCachePayload(zen::HttpServerRequest& Reques
if (!Payload)
{
- ZEN_DEBUG("MISS - '{}/{}/{}'", Ref.BucketSegment, Ref.HashKey, Ref.PayloadId);
+ ZEN_DEBUG("MISS - '{}/{}/{}' '{}'", Ref.BucketSegment, Ref.HashKey, Ref.PayloadId, ToString(Request.AcceptContentType()));
return Request.WriteResponse(HttpResponseCode::NotFound);
}