We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dbcf8d commit d59e114Copy full SHA for d59e114
lib/utilities/serverAccessLogger.js
@@ -295,6 +295,13 @@ function getOperation(req) {
295
if (req.apiMethod === 'objectPutCopyPart') {
296
return 'REST.COPY.PART';
297
}
298
+ // Special handling for website operations
299
+ if (req.apiMethod === 'websiteGet') {
300
+ return 'WEBSITE.GET.OBJECT';
301
+ }
302
+ if (req.apiMethod === 'websiteHead') {
303
+ return 'WEBSITE.HEAD.OBJECT';
304
305
306
if (!resourceType) {
307
// Only emit a warning if apiMethod is not undefined, meaning request is valid.
0 commit comments