diff --git a/bin/proxy b/bin/proxy
index 68a0f65d5aaf72feb16e02fbfd5051f9359e1e02..9de69ac2e153a056f207b74f291969e7ce835072 100755
--- a/bin/proxy
+++ b/bin/proxy
@@ -18,7 +18,6 @@ const allowed = /^https:\/\/[a-zA-Z\.\-_]+\/\.well-known\/browserid$/;
 var server = http.createServer(function (req, res) {
   var url = req.url;
   if (!allowed.test(url)) {
-    console.log('there');
     res.writeHead(400);
     res.end('You can\'t get there from here');
     return;