2018-12-19 13:16:45 -05:00
|
|
|
# Logging module for Deno
|
|
|
|
|
|
|
|
Very much work in progress. Contributions welcome.
|
|
|
|
|
2018-12-24 10:28:01 -05:00
|
|
|
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.
|
2018-12-19 13:16:45 -05:00
|
|
|
|
|
|
|
Todo:
|
2018-12-24 10:28:01 -05:00
|
|
|
|
2018-12-19 13:16:45 -05:00
|
|
|
- [ ] implement formatters
|
|
|
|
- [ ] implement `FileHandler`
|
2018-12-24 10:28:01 -05:00
|
|
|
- [ ] tests
|