diff --git a/deltachat-repl/README.md b/deltachat-repl/README.md index 797ecfeb6..4adbfc34b 100644 --- a/deltachat-repl/README.md +++ b/deltachat-repl/README.md @@ -1,7 +1,7 @@ # Delta Chat REPL -This is a simple [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop) frontend built on top of Delta Chat core. -Its purpose is to help with quick testing during development, it is not meant for end users. +This is a [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop) frontend built on top of Delta Chat core. +Its purpose is to help with testing during development, it is not meant for end users. Dependencies: - if you want to use `getqr` you need `qrencode` (To install use your systems package manager) @@ -12,7 +12,7 @@ Dependencies: cargo run ``` -Type in `help` to learn about what comands are available. +Type in `help` to learn about what commands are available. ## Usage with `tokio-console` @@ -30,9 +30,9 @@ RUSTFLAGS="--cfg tokio_unstable" cargo run ``` Then in a new console window start [`tokio-console`](https://github.com/tokio-rs/console). -You can install it via `cargo install tokio-console`. +You can install it via `cargo install --locked tokio-console`. -### Quick Example +### Example An example session in the REPL tool: diff --git a/src/debug_logging.rs b/src/debug_logging.rs index a895c8a26..6776419c4 100644 --- a/src/debug_logging.rs +++ b/src/debug_logging.rs @@ -151,7 +151,7 @@ pub(crate) async fn set_debug_logging_xdc(ctx: &Context, id: Option) -> a let (sender, debug_logging_recv) = channel::bounded(1000); let loop_handle = { let ctx = ctx.clone(); - spawn_named_task!("debug_logging_loop", async move { + spawn_named_task!("xdc_debug_logging_loop", async move { debug_logging_loop(&ctx, debug_logging_recv).await }) };