Skip to content

Commit 9f9d3a0

Browse files
committed
More readme stuff
1 parent 7446132 commit 9f9d3a0

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
# Deno Structured Logging (currently unstable)
22

33
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/raw.githubusercontent.com/Yamboy1/deno-structured-logging/master/mod.ts)
4-
[![deno.land](https://img.shields.io/badge/deno.land-0.4.0-blue)](https://deno.land/x/deno_structured_logging@0.4.0)
4+
[![deno.land](https://img.shields.io/badge/deno.land-0.4.1-blue)](https://deno.land/x/deno_structured_logging@0.4.1)
55

66
A better logger for deno, with support for structured logging.
77

88
## Simple Example
99
```ts
10-
// Copyright 2020 Yamboy1. All rights reserved. MIT license.
11-
12-
import { createLogger, consoleSink } from "https://deno.land/x/deno_structured_logging@0.4.0/mod.ts";
10+
import { createLogger, consoleSink } from "https://deno.land/x/deno_structured_logging@0.4.1/mod.ts";
1311

1412
const logger = createLogger().addSink(consoleSink());
1513

@@ -31,7 +29,7 @@ import {
3129
fileSink,
3230
jsonFormat,
3331
textFormat,
34-
} from "https://deno.land/x/deno_structured_logging@0.4.0/mod.ts";
32+
} from "https://deno.land/x/deno_structured_logging@0.4.1/mod.ts";
3533

3634
const logger = createLogger({
3735
minimumLevel: LogLevel.INFO,

0 commit comments

Comments
 (0)