Skip to content

Commit

Permalink
fix: log
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Dec 11, 2024
1 parent 07d18fd commit 5b70b13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ export default class Server {
this.app.listen(this.port, this.hostname, () => {
console.log(
"Server started.\n" +
`\turl: http://${this.hostname}:${this.port}\n` +
`\tenvironment: ${process.env.NODE_ENV}\n` +
`\tmode: ${this.mode}`,
`url: http://${this.hostname}:${this.port}\n` +
`environment: ${process.env.NODE_ENV}\n` +
`mode: ${this.mode}\n`,
)
})
}
Expand Down

0 comments on commit 5b70b13

Please sign in to comment.