Skip to content

Commit 6c78f69

Browse files
authored
Removed the unnecessary logs
1 parent b9340a1 commit 6c78f69

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

common/etc/nginx/include/s3gateway.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,12 +405,10 @@ function redirectToS3(r) {
405405
var isDirectoryListing = allow_listing && _isDirectory(uriPath);
406406

407407
if (isDirectoryListing && r.method === 'GET') {
408-
_debug_log(r, 'Redirecting to S3Listing..')
409408
r.internalRedirect("@s3Listing");
410409
} else if (!isDirectoryListing && uriPath === '/') {
411410
r.internalRedirect("@error404");
412411
} else {
413-
_debug_log(r, 'Redirecting to S3..')
414412
r.internalRedirect("@s3");
415413
}
416414
}

0 commit comments

Comments
 (0)