瀏覽代碼

Removed unneeded console.error.

Eden Tyler-Moss 5 年之前
父節點
當前提交
5ad788c419
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      src/api/v1/public/index.js

+ 0 - 1
src/api/v1/public/index.js

@@ -6,7 +6,6 @@ module.exports = ({ config, realm, randomId }) => {
   // Retrieve guaranteed random ID.
   app.get('/id', (req, res) => {
     res.contentType = 'text/html';
-    console.error('src/api/v1/public/index.js', randomId);
     res.send(realm.generateClientId(randomId));
   });