We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46e9e9c commit e739a67Copy full SHA for e739a67
bottlecap/src/logs/lambda/processor.rs
@@ -88,12 +88,6 @@ impl LambdaProcessor {
88
#[allow(clippy::too_many_lines)]
89
async fn get_message(&mut self, event: TelemetryEvent) -> Result<Message, Box<dyn Error>> {
90
let copy = event.clone();
91
-
92
- // Log all non-Extension telemetry events to avoid infinite loop
93
- if !matches!(event.record, TelemetryRecord::Extension(_)) {
94
- debug!("LOGS | Incoming telemetry event: {:?}", event.record);
95
- }
96
97
match event.record {
98
TelemetryRecord::Function(v) => {
99
let (request_id, message) = match v {
0 commit comments