Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Commit

Permalink
Log calls to GET /engines to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
wennmo committed Mar 5, 2019
1 parent 042b25a commit 98c1afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Routes.js
Expand Up @@ -85,7 +85,7 @@ router.get(`/${healthEndpoint}`, async (ctx) => {
* description: Service Unavailable
*/
router.get(`/${apiVersion}/${enginesEndpoint}`, async (ctx) => {
logger.info(`GET /${apiVersion}/${enginesEndpoint}${ctx.querystring ? `?${ctx.querystring}` : ''}`);
logger.debug(`GET /${apiVersion}/${enginesEndpoint}${ctx.querystring ? `?${ctx.querystring}` : ''}`);
try {
ctx.body = await engineDiscovery.list(ctx.query);
} catch (err) {
Expand Down

0 comments on commit 98c1afd

Please sign in to comment.