Skip to content

Commit

Permalink
debug level to log event (#2759)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenoir authored Nov 12, 2024
1 parent d9879fa commit c2e4e1a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object LambdaMain extends RequestHandler[SQSEvent, String] with Logging {
event: SQSEvent,
context: Context
): String = {
info(s"running batcher lambda, got event: $event")
debug(s"Running batcher lambda, got event: $event")

implicit val actorSystem: ActorSystem =
ActorSystem("main-actor-system")
Expand All @@ -38,6 +38,7 @@ object LambdaMain extends RequestHandler[SQSEvent, String] with Logging {
extractPathsFromEvent(event),
downstream
)

"Done"
}

Expand Down

0 comments on commit c2e4e1a

Please sign in to comment.