Skip to content

Commit

Permalink
chore: update readme for v0.4.2
Browse files Browse the repository at this point in the history
Yamboy1 committed May 30, 2020
1 parent 716e942 commit 2a5a673
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 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/deno_structured_logging@0.4.1)
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/raw.githubusercontent.com/Yamboy1/deno-structured-logging/0.4.2/mod.ts)
[![deno.land](https://img.shields.io/badge/deno.land-0.4.2-blue)](https://deno.land/x/deno_structured_logging@0.4.2)

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

@@ -16,7 +16,7 @@ A better logger for deno, with support for structured logging.

## Simple Example
```ts
import { createLogger, consoleSink } from "https://deno.land/x/deno_structured_logging@0.4.1/mod.ts";
import { createLogger, consoleSink } from "https://deno.land/x/deno_structured_logging@0.4.2/mod.ts";

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

@@ -38,7 +38,7 @@ import {
fileSink,
jsonFormat,
textFormat,
} from "https://deno.land/x/deno_structured_logging@0.4.1/mod.ts";
} from "https://deno.land/x/deno_structured_logging@0.4.2/mod.ts";

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

0 comments on commit 2a5a673

Please sign in to comment.