Skip to content

Commit

Permalink
Remove debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoBruni committed Feb 11, 2024
1 parent 9baa8a1 commit cef0d24
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/APIRouter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const debug = require('debug')('fastify-mongoose-api');
const { defaultSchemas } = require('./DefaultSchemas');

const capFL = string => string.charAt(0).toUpperCase() + string.slice(1);
Expand Down Expand Up @@ -67,13 +66,6 @@ class APIRouter {
);
}
}

debug(
'set up API path',
path,
'sub routes: ',
Object.keys(this._apiSubRoutesFunctions)
);
}

_populateSchema(funcName, optSchema) {
Expand Down

0 comments on commit cef0d24

Please sign in to comment.