Skip to content

Commit 4125df8

Browse files
Apply suggestions from code review
Co-authored-by: Nando Vieira <[email protected]>
1 parent 592de39 commit 4125df8

File tree

1 file changed

+2
-2
lines changed
  • cmd/soroban-cli/src/commands/network/container

1 file changed

+2
-2
lines changed

cmd/soroban-cli/src/commands/network/container/logs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ pub struct Cmd {
2727

2828
impl Cmd {
2929
pub async fn run(&self, global_args: &global::Args) -> Result<(), Error> {
30-
let printer = print::Print::new(global_args.quiet);
30+
let print = print::Print::new(global_args.quiet);
3131
let container_name = Name(self.name.clone()).get_internal_container_name();
32-
let docker = self.container_args.connect_to_docker(&printer).await?;
32+
let docker = self.container_args.connect_to_docker(&print).await?;
3333
let logs_stream = &mut docker.logs(
3434
&container_name,
3535
Some(bollard::container::LogsOptions {

0 commit comments

Comments
 (0)