Skip to content

Commit

Permalink
chore: use consistent message prefix
Browse files Browse the repository at this point in the history
Signed-off-by: Connor Smith <connor.smith.256@gmail.com>
  • Loading branch information
connorsmith256 committed Nov 24, 2023
1 parent 148abe4 commit daf0543
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/host/src/wasmbus/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3695,7 +3695,7 @@ impl Host {

#[instrument(level = "trace", skip_all)]
async fn handle_config_get_one(&self, entity_id: &str, key: &str) -> anyhow::Result<Bytes> {
trace!("getting config");
trace!("handling config");
let json = match self
.config_data_cache
.read()
Expand All @@ -3721,7 +3721,7 @@ impl Host {

#[instrument(level = "trace", skip(self))]
async fn handle_config_get(&self, entity_id: &str) -> anyhow::Result<Bytes> {
trace!(%entity_id, "getting all config");
trace!(%entity_id, "handling all config");
self.config_data_cache
.read()
.await
Expand Down

0 comments on commit daf0543

Please sign in to comment.