Skip to content

Commit

Permalink
fix(ping): fix emoji spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Apr 18, 2023
1 parent e1caff4 commit 9003838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/ping.rs
Expand Up @@ -27,7 +27,7 @@ impl OroCommand for PingCmd {
async fn execute(self) -> Result<()> {
let start = Instant::now();
let registry = self.registry;
tracing::info!("{}ping: {registry}", if self.emoji { "🗣️ " } else { "" });
tracing::info!("{}ping: {registry}", if self.emoji { "🗣️ " } else { "" });
let client = OroClient::new(registry.clone());
let payload = client.ping().await?;
let time = start.elapsed().as_micros() as f32 / 1000.0;
Expand Down

0 comments on commit 9003838

Please sign in to comment.