Skip to content

Commit

Permalink
Merge branch 'release/1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
adufr committed Nov 11, 2019
2 parents 6b76fdb + 2ba9df5 commit df20ea6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "calendz-api-calendar",
"version": "1.0.0",
"version": "1.0.1",
"description": "API wrapper for EPSI's agenda",
"private": true,
"main": "app.js",
Expand Down
2 changes: 1 addition & 1 deletion src/config/express.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (config.node_env === 'development') {
app.use(morgan('dev', { stream: { write: message => logger.info(message.trim()) } }))
} else if (config.node_env === 'production') {
/* istanbul ignore next */
app.use(morgan('combined', {
app.use(morgan('tiny', {
stream: { write: message => logger.info(message.trim()) },
skip: (req, res) => req.originalUrl === '/v1/health-check'
}))
Expand Down

0 comments on commit df20ea6

Please sign in to comment.