Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/txn-command
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Jun 20, 2024
2 parents b2a075f + fb2cdaf commit f9559c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,7 @@ Simulate a transaction envelope from stdin

## `stellar cache`

Cache for tranasctions and contract specs
Cache for transactions and contract specs

**Usage:** `stellar cache <COMMAND>`

Expand Down
3 changes: 2 additions & 1 deletion cmd/soroban-cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ pub async fn main() {
if let Some(level) = root.global_args.log_level() {
let mut e_filter = EnvFilter::from_default_env()
.add_directive("hyper=off".parse().unwrap())
.add_directive(format!("stellar_cli={level}").parse().unwrap());
.add_directive(format!("stellar_cli={level}").parse().unwrap())
.add_directive(format!("soroban_cli={level}").parse().unwrap());

for filter in &root.global_args.filter_logs {
e_filter = e_filter.add_directive(
Expand Down

0 comments on commit f9559c2

Please sign in to comment.