Skip to content

Commit 34d80f8

Browse files
committed
fmt
1 parent 290e4db commit 34d80f8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bottlecap/src/logs/lambda/processor.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,10 @@ impl LambdaProcessor {
386386
.get("level")
387387
.and_then(|v| v.as_str())
388388
.and_then(map_log_level_to_status)
389-
.map_or(lambda_message.status.clone(), std::string::ToString::to_string);
389+
.map_or(
390+
lambda_message.status.clone(),
391+
std::string::ToString::to_string,
392+
);
390393

391394
IntakeLog {
392395
hostname: self.function_arn.clone(),

0 commit comments

Comments
 (0)