about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/index.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/index.ts b/src/index.ts
index 7188e6c..60d7bb7 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -118,10 +118,6 @@ export default {
         .split(",")
         .map((x) => x.trim().toLowerCase());
       if (encodings.includes("br") && files.has(file.relPath + ".br")) {
-        console.log(
-          "Using br encoding for user agent",
-          request.headers.get("user-agent"),
-        );
         return serveEncodedFile(files.get(file.relPath + ".br"), 200, {
           "content-encoding": "br",
           "content-type": file.handle.type,