Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bottlecap/src/secrets/decrypt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pub async fn resolve_secrets(config: Arc<Config>, aws_config: Arc<AwsConfig>) ->
.await
};

debug!("Decrypt took {}ms", before_decrypt.elapsed().as_millis());
debug!("Decrypt took {} ms", before_decrypt.elapsed().as_millis());

match decrypted_key {
Ok(key) => Some(key),
Expand Down
2 changes: 1 addition & 1 deletion bottlecap/src/traces/stats_flusher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl StatsFlusher for ServerlessStatsFlusher {
stats_utils::send_stats_payload(serialized_stats_payload, endpoint, api_key).await;
let elapsed = start.elapsed();
debug!(
"Stats request to {} took {}ms",
"Stats request to {} took {} ms",
stats_url,
elapsed.as_millis()
);
Expand Down
2 changes: 1 addition & 1 deletion bottlecap/src/traces/trace_flusher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ impl TraceFlusher for ServerlessTraceFlusher {
}
}

debug!("Flushing traces took {}ms", start.elapsed().as_millis());
debug!("Flushing traces took {} ms", start.elapsed().as_millis());
None
}
}
Loading