Skip to content

Commit

Permalink
Fix format.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-dfinity committed Nov 7, 2024
1 parent 060b256 commit 47d62d7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/dfx/src/actors/post_start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,15 @@ impl Handler<PocketIcProxyReadySignal> 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'."
)
}
}
}

0 comments on commit 47d62d7

Please sign in to comment.