small-logger 0.1.0

a small logger for programs who do not know how to log correctly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Small logger

- reads stdout and stdin of your process
- adds a timestamps
- spits the result in a file that is composed of single JSON lines for later parsing
- file is in ./logs/%Y/%m/%d/process-name-%T.ajson
- try to never crash

# How to use ?

```
small-logger your-program-name and its arguments
```

# TODO

- make log folder location a parameter
- add MARK syslog like to indicate process is still alive when idle for a long time.