Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ advanced uses, this compile function is directly available.

### express/connect

Simple app that will log all request in the Apache combined format to STDOUT
Sample app that will log all request in the Apache combined format to STDOUT

```js
var express = require('express')
Expand All @@ -265,7 +265,7 @@ app.get('/', function (req, res) {

### vanilla http server

Simple app that will log all request in the Apache combined format to STDOUT
Sample app that will log all request in the Apache combined format to STDOUT

```js
var finalhandler = require('finalhandler')
Expand All @@ -291,7 +291,7 @@ http.createServer(function (req, res) {

#### single file

Simple app that will log all requests in the Apache combined format to the file
Sample app that will log all requests in the Apache combined format to the file
`access.log`.

```js
Expand All @@ -315,7 +315,7 @@ app.get('/', function (req, res) {

#### log file rotation

Simple app that will log all requests in the Apache combined format to one log
Sample app that will log all requests in the Apache combined format to one log
file per day in the `log/` directory using the
[rotating-file-stream module](https://www.npmjs.com/package/rotating-file-stream).

Expand Down