Skip to content

Commit 1cd6806

Browse files
committed
Removed debug loggin
1 parent 1c43d68 commit 1cd6806

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/BUILD_AND_DEPLOY.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333
password: ${{ secrets.BASEFLOW_ACR_PASSWORD }}
3434
push: ${{ github.event_name != 'pull_request' }}
3535
vulnerability_scan: ${{ github.event_name != 'pull_request' }}
36-
version: 1.4
36+
version: 1.5
3737
context: ./oxybox

oxybox/src/mimir/client.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ pub async fn send_to_mimir(
2828
println!("No metrics to send.");
2929
return Ok(());
3030
}
31-
println!(
32-
"Sending {} metrics for tenant {} to Mimir at {}",
33-
metrics.len(),
34-
tenant_id.as_deref().unwrap_or("unknown"),
35-
mimir_endpoint
36-
);
3731

3832
let write_request = WriteRequest {
3933
timeseries: metrics,
@@ -74,7 +68,6 @@ pub async fn send_to_mimir(
7468
eprintln!("Failed to push to Mimir: {} - {}", status, body);
7569
return Err(format!("Failed to push to Mimir: {status} - {body}").into());
7670
}
77-
println!("Metrics sent successfully to Mimir.");
7871
Ok(())
7972
}
8073

0 commit comments

Comments
 (0)