We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75a3409 commit 657e639Copy full SHA for 657e639
src/agent/services/lazer_exporter.rs
@@ -368,7 +368,11 @@ mod lazer_exporter {
368
S: Send + Sync + 'static,
369
{
370
let mut lazer_symbols = get_lazer_symbol_map(&config.history_url).await;
371
- tracing::info!("Retrieved {} Lazer feeds with hermes symbols from symbols endpoint: {}", lazer_symbols.len(), &config.history_url);
+ tracing::info!(
372
+ "Retrieved {} Lazer feeds with hermes symbols from symbols endpoint: {}",
373
+ lazer_symbols.len(),
374
+ &config.history_url
375
+ );
376
377
let mut publish_interval = tokio::time::interval(config.publish_interval_duration);
378
let mut symbol_fetch_interval =
0 commit comments