Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
syphar committed Aug 13, 2024
1 parent a6155e2 commit b7e96d7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/docbuilder/rustwide_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,13 @@ impl RustwideBuilder {
})
}

fn run_command(&self, command: Command) -> Result<(), CommandError> {
let mut storage = LogStorage::new(log::LevelFilter::Info);
let result = logging::capture(&storage, move || command.run());

result
}

fn prepare_command<'ws, 'pl>(
&self,
build: &'ws Build,
Expand Down

0 comments on commit b7e96d7

Please sign in to comment.