From 852388df426d66db58b34ca7a63a4ea93c9b8a1b Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 10 Apr 2024 17:05:07 +0200 Subject: [PATCH] README - Updated --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3162baa..9880ca9 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ dub add dlog ``` * [View on DUB](https://code.dlang.org/packages/dlog) -* [View API](https://dlog.dpldocs.info/v0.3.19/index.html) +* [View API](https://dlog.dpldocs.info/) ### Components @@ -49,7 +49,7 @@ dlog is formed out of two main components: ### Quick start -If you want to immediately begin logging text usin the defaults and don't care about implementing your own transformations then you can +If you want to immediately begin logging text using the defaults and don't care about implementing your own transformations then you can simply use the default logger as follows: ```d @@ -77,7 +77,7 @@ This will output the following: [2024-Apr-09 19:14:38.3077759] (DEBUG): ["woah", "LEVELS!"] 69.42 ``` -You can see the [full API](https://dlog.dpldocs.info/v0.3.19/dlog.context.html) for more information. +You can see the [full API](https://dlog.dpldocs.info/) for more information. ### Custom loggers @@ -92,7 +92,7 @@ You will need to start off with a class that inherits from the `Transform` class ```d import dlog; -public class CustomTranform : Transform +public class CustomTransform : Transform { public override Message transform(Message message) {