diff --git a/src/dfx/src/actors/post_start.rs b/src/dfx/src/actors/post_start.rs index 1a465cf24a..35222e6e57 100644 --- a/src/dfx/src/actors/post_start.rs +++ b/src/dfx/src/actors/post_start.rs @@ -48,9 +48,15 @@ impl Handler for PostStart { fn handle(&mut self, _msg: PocketIcProxyReadySignal, _ctx: &mut Self::Context) -> Self::Result { let logger = &self.config.logger; if self.config.background { - info!(logger, "Success! The dfx server is running in the background.") + info!( + logger, + "Success! The dfx server is running in the background." + ) } else { - info!(logger, "Success! The dfx server is running.\nYou must open a new terminal to continue developing. If you'd prefer to stop, quit with 'Ctrl-C'."); + info!( + logger, + "Success! The dfx server is running.\nYou must open a new terminal to continue developing. If you'd prefer to stop, quit with 'Ctrl-C'." + ) } } }