Browse Source

Removed unneeded console.error.

Eden Tyler-Moss 5 năm trước cách đây
mục cha
commit
5ad788c419
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  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));
   });