Skip to content

Commit

Permalink
fix compose example
Browse files Browse the repository at this point in the history
  • Loading branch information
steambap committed Jul 4, 2017
1 parent 50bcadf commit ac3e4f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compose/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async function logger(ctx, next) {
await next();
const ms = new Date() - start;
if ('test' != process.env.NODE_ENV) {
console.log('%s %s - %s', this.method, ctx.url, ms);
console.log('%s %s - %s', ctx.method, ctx.url, ms);
}
}

Expand Down

0 comments on commit ac3e4f3

Please sign in to comment.