summaryrefslogtreecommitdiff
path: root/logging/README.md
blob: b444b411b3a560d36eff69e92800db79505136d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Logging module for Deno

Very much work in progress. Contributions welcome.

This library is heavily inspired by Python's [logging](https://docs.python.org/3/library/logging.html#logging.Logger.log) module, altough
it's not planned to be a direct port. Having separate loggers, handlers, formatters and filters gives developer very granular control over logging
which is most desirable for server side software.

Todo:
- [ ] implement formatters
- [ ] implement `FileHandler`
- [ ] tests