Skip to content

Commit 96d0a5b

Browse files
committed
Merge branch 'master' of https://github.com/edravis/logatim
2 parents 35bdbc7 + e71bc86 commit 96d0a5b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#### Logatim is an isomorphic logger which implements log levels and ANSI 16 styles.
1212

1313

14-
Finally you can use the same logger for the **server and client side** of your applications. Log for developers using **colors, underlines, etc.** in order to transform the terminal in an authenitc debugger machine. And log for production **managing exactly what have** and what have not **to be outputed**.
14+
Finally you can use the same logger for the **server and client side** of your applications. Log for developers using **colors, underlines, etc.** in order to transform the terminal in an authentic debugger machine. And log for production **managing exactly what have** and what have not **to be outputted**.
1515

1616
## Why?
1717
I've been coding for a long time and I've always feel that we need a better approach to the logging issue. I've researched a lot about the available logger modules and I've even run a [questionary](https://docs.google.com/forms/d/10cZEXVc7aA29JBjoJFsTnTd8tf-RxrwlgusZrg9HW90) about this topic. After this inquiry I think that **the most suitable logger should combines these six elemental features**:
@@ -34,7 +34,7 @@ Choose one of the following options:
3434
## Features
3535

3636
* Logatim has **colors**, **background colors** and **text styles**.
37-
* Implements the five **native console logging methods**: trace, debug, info, warn and error. And also the slient mode.
37+
* Implements the five **native console logging methods**: trace, debug, info, warn and error. And also the silent mode.
3838
* Production ready for **server and front-end sides**. Learn one, implement everywhere.
3939
* Super **lightweight**, weighs in at 1.1KB minified and gzipped.
4040
* Implements **human-like** code style: `logatim.green.bold.info('super sexy')`
@@ -58,7 +58,7 @@ Choose one of the following options:
5858

5959

6060
## Usage
61-
The logatim API is tend to be extremly minimal and human-like. It has two different kind of options: the styling and the leveling ones. Logatim consists in:
61+
The logatim API is tend to be extremely minimal and human-like. It has two different kind of options: the styling and the leveling ones. Logatim consists in:
6262

6363
### Styles
6464

@@ -69,7 +69,7 @@ const logatim = require('logatim')
6969

7070
logatim.blue.bgYellow.bold.info("It's like reading english")
7171

72-
// and the next print is completly independent; zero memories
72+
// and the next print is completely independent; zero memories
7373
logatim.green.info('No background color nor bold here')
7474

7575
// you can concat different styles
@@ -111,7 +111,7 @@ logatim.setLevel('info')
111111
logatim.debug("I'll be printed") // because debug is greater than info
112112
```
113113

114-
* Leveling also ensures that **your logs don't break anything**, even if there's not a `console` object (I'm staring at you IE) it will slient fallback to the safest print possible.
114+
* Leveling also ensures that **your logs don't break anything**, even if there's not a `console` object (I'm staring at you IE) it will silent fallback to the safest print possible.
115115

116116

117117
## Contributing

0 commit comments

Comments
 (0)