Skip to content

Commit

Permalink
fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsimonovic committed Jul 10, 2019
1 parent 0d1b774 commit 73ad60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ try {
const apidoc = jsYaml.safeLoad(v1ApiDoc, { json: true });
app.use('/v1/swagger-ui', swaggerUi.serve, swaggerUi.setup(apidoc));
apidoc.servers.forEach((server) => {
logger.info(`swagger-ui mounted at ${server.url}/swagger-ui`);
logger.info(`swagger-ui mounted at ${server.url}/v1/swagger-ui`);
});
} catch (e) {
logger.error('failed to read the api yaml spec', e);
Expand Down

0 comments on commit 73ad60e

Please sign in to comment.