Skip to content

Commit

Permalink
Merge pull request #32 from thomaschampagne/patch-1
Browse files Browse the repository at this point in the history
Fix snippet documentation issue
  • Loading branch information
terehov authored Jul 16, 2020
2 parents e133498 + 373ffde commit dcb127f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -757,9 +757,9 @@ logger.attachTransport(
"debug"
);

log.debug("I am a debug log.");
log.info("I am an info log.");
log.warn("I am a warn log with a json object:", { foo: "bar" });
logger.debug("I am a debug log.");
logger.info("I am an info log.");
logger.warn("I am a warn log with a json object:", { foo: "bar" });
```

**Result:** `logs.txt`
Expand Down

0 comments on commit dcb127f

Please sign in to comment.