From 7571eacb8234a30760827914e26a2d6c80f30902 Mon Sep 17 00:00:00 2001 From: KokaKiwi Date: Tue, 10 May 2022 17:49:39 +0200 Subject: [PATCH] doc: Add some notes on the draft doc (+typo) --- doc/draft.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/draft.md b/doc/draft.md index 2a5993c..cbac6bd 100644 --- a/doc/draft.md +++ b/doc/draft.md @@ -1,6 +1,6 @@ # Just Enough Doc -## Rum `simple` example +## Run `simple` example This example is meant to show basic service-based IMAP server with boitalettres library. @@ -16,6 +16,10 @@ $ cargo run --example simple $ python scripts/test_imap.py ``` +## Notes + +- The library use the `tracing` library for logging, a basic setup is shown in the `simple` example with the `tracing-subscriber` crate. + ## References - [`imap-codec`](https://docs.rs/imap-codec): IMAP protocol model+encoder/decoder