Skip to content

Commit 15d74c1

Browse files
committed
ref: correct log messages
1 parent 2c25139 commit 15d74c1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/taurus/src/client/runtime_usage.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl TaurusRuntimeUsageService {
2222
}
2323

2424
pub async fn update_runtime_usage(&self, runtime_usage: RuntimeUsage) {
25-
log::info!("Updating the current Runtime Status!");
25+
log::info!("Updating the current Runtime Usage!");
2626
let mut client = RuntimeUsageServiceClient::new(self.channel.clone());
2727

2828
let request = Request::from_parts(
@@ -36,12 +36,12 @@ impl TaurusRuntimeUsageService {
3636
match client.update(request).await {
3737
Ok(response) => {
3838
log::info!(
39-
"Was the update of the RuntimeStatus accepted by Sagittarius? {}",
39+
"Was the update of the RuntimeUsage accepted by Sagittarius? {}",
4040
response.into_inner().success
4141
);
4242
}
4343
Err(err) => {
44-
log::error!("Failed to update RuntimeStatus: {:?}", err);
44+
log::error!("Failed to update RuntimeUsage: {:?}", err);
4545
}
4646
}
4747
}

0 commit comments

Comments
 (0)