Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
omnidan committed Aug 21, 2014
1 parent 7cd55aa commit 6cb334d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -30,7 +30,7 @@ log.info("Hello World!");
You don't need to specify a component name (only recommended when you have a
small, single file project):
```
var log = require('log-simple')({init: false});
var log = require('log-simple')();
log.info("Hello World!");
```

Expand All @@ -48,7 +48,7 @@ default values. This should be self-explanatory:
var log = require('log-simple')('component-name', {
debug: true, // show debug messages
time: true, // show time
init: true // show component init message
init: false // show component init message
});
```

Expand Down

0 comments on commit 6cb334d

Please sign in to comment.