|
1 | | -# Deno Structured Logging (currently unstable) |
| 1 | +# Deno Structured Logging |
2 | 2 |
|
3 | 3 | [](https://doc.deno.land/https/raw.githubusercontent.com/Yamboy1/deno-structured-logging/master/mod.ts) |
4 | 4 | [](https://deno.land/x/deno_structured_logging@0.4.1) |
5 | 5 |
|
6 | 6 | A better logger for deno, with support for structured logging. |
7 | 7 |
|
8 | 8 | ## Planned features for v1 |
9 | | -- [ ] Better / more complete documentation |
10 | | -- [ ] Allow environment variables to control loglevels |
11 | | -- [ ] Async support in sinks |
12 | | -- [ ] Proper serialisation of objects |
13 | | -- [ ] Customisable timestamp formats |
14 | | -- [ ] Filtering logs per sink (probably not for v1) |
15 | | -- [ ] More built-in sinks |
| 9 | +- [ ] Allow environment variables to control loglevels [#1][i1] |
| 10 | +- [ ] Customisable timestamp formats [#2][i2] |
| 11 | +- [ ] Proper serialisation of objects [#3][i3] |
| 12 | +- [ ] Async support in sinks [#4][i4] |
| 13 | +- [ ] More built-in sinks [#5][i5] |
| 14 | +- [ ] Better / more complete documentation [#6][i6] |
| 15 | +- [ ] Filtering logs per sink [#7][i7] |
16 | 16 |
|
17 | 17 | ## Simple Example |
18 | 18 | ```ts |
@@ -76,4 +76,12 @@ Available sinks: |
76 | 76 |
|
77 | 77 | - Console Sink (with colors) |
78 | 78 | - File Sink |
79 | | -- More coming soon |
| 79 | +- More coming soon |
| 80 | + |
| 81 | +[i1]: https://github.com/Yamboy1/deno-structured-logging/issues/1 |
| 82 | +[i2]: https://github.com/Yamboy1/deno-structured-logging/issues/2 |
| 83 | +[i3]: https://github.com/Yamboy1/deno-structured-logging/issues/3 |
| 84 | +[i4]: https://github.com/Yamboy1/deno-structured-logging/issues/4 |
| 85 | +[i5]: https://github.com/Yamboy1/deno-structured-logging/issues/5 |
| 86 | +[i6]: https://github.com/Yamboy1/deno-structured-logging/issues/6 |
| 87 | +[i7]: https://github.com/Yamboy1/deno-structured-logging/issues/7 |
0 commit comments