-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add issue links for planned features
- Loading branch information
Showing
1 changed file
with
17 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Deno Structured Logging (currently unstable) | ||
# Deno Structured Logging | ||
|
||
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/raw.githubusercontent.com/Yamboy1/deno-structured-logging/master/mod.ts) | ||
[![deno.land](https://img.shields.io/badge/deno.land-0.4.1-blue)](https://deno.land/x/[email protected]) | ||
|
||
A better logger for deno, with support for structured logging. | ||
|
||
## Planned features for v1 | ||
- [ ] Better / more complete documentation | ||
- [ ] Allow environment variables to control loglevels | ||
- [ ] Async support in sinks | ||
- [ ] Proper serialisation of objects | ||
- [ ] Customisable timestamp formats | ||
- [ ] Filtering logs per sink (probably not for v1) | ||
- [ ] More built-in sinks | ||
- [ ] Allow environment variables to control loglevels [#1][i1] | ||
- [ ] Customisable timestamp formats [#2][i2] | ||
- [ ] Proper serialisation of objects [#3][i3] | ||
- [ ] Async support in sinks [#4][i4] | ||
- [ ] More built-in sinks [#5][i5] | ||
- [ ] Better / more complete documentation [#6][i6] | ||
- [ ] Filtering logs per sink [#7][i7] | ||
|
||
## Simple Example | ||
```ts | ||
|
@@ -76,4 +76,12 @@ Available sinks: | |
|
||
- Console Sink (with colors) | ||
- File Sink | ||
- More coming soon | ||
- More coming soon | ||
|
||
[i1]: https://github.com/Yamboy1/deno-structured-logging/issues/1 | ||
[i2]: https://github.com/Yamboy1/deno-structured-logging/issues/2 | ||
[i3]: https://github.com/Yamboy1/deno-structured-logging/issues/3 | ||
[i4]: https://github.com/Yamboy1/deno-structured-logging/issues/4 | ||
[i5]: https://github.com/Yamboy1/deno-structured-logging/issues/5 | ||
[i6]: https://github.com/Yamboy1/deno-structured-logging/issues/6 | ||
[i7]: https://github.com/Yamboy1/deno-structured-logging/issues/7 |