From 17ac77e65108425252d2771ff4aab39542b062db Mon Sep 17 00:00:00 2001 From: Savely <136869149+savvar9991@users.noreply.github.com> Date: Sat, 4 Jan 2025 03:10:06 +1100 Subject: [PATCH] Fix 404 Error and Improve Debug Logging in README (#3999) * Update README.md * Update README.md --- README.md | 2 +- crates/testing/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 784c0776b2..94ba30d515 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ This will output: # Debugging -A debugging config file is provided for vscode and vscodium in [`.vscode/launch.json`](https://github.com/EspressoSystems/HotShot/blob/main/.cargo/config). This is intended to be used with [vadimcn/vscode-lldb](https://open-vsx.org/extension/vadimcn/vscode-lldb) but may work with other rust debuggers as well. +A debugging config file is provided for vscode and vscodium in [`.vscode/launch.json`](https://github.com/EspressoSystems/HotShot/blob/main/.cargo/config.toml). This is intended to be used with [vadimcn/vscode-lldb](https://open-vsx.org/extension/vadimcn/vscode-lldb) but may work with other rust debuggers as well. To bring `lldb` into scope with nix, run `nix develop .#debugShell`. diff --git a/crates/testing/README.md b/crates/testing/README.md index 96016cd427..ee2bfff4a0 100644 --- a/crates/testing/README.md +++ b/crates/testing/README.md @@ -57,7 +57,7 @@ async { let hook = RoundHook(Arc::new(move |_runner, ctx| { async move { - tracing::error!("Context for this view is {:#?})", ctx); + tracing::error!("Context for this view is {:#?}", ctx); Ok(()) } .boxed_local()