Skip to content

Commit

Permalink
Fix 404 Error and Improve Debug Logging in README (#3999)
Browse files Browse the repository at this point in the history
* Update README.md

* Update README.md
  • Loading branch information
savvar9991 authored Jan 3, 2025
1 parent e6c6897 commit 17ac77e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion crates/testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 17ac77e

Please sign in to comment.