Skip to content

Commit

Permalink
Put some warnings/info in.
Browse files Browse the repository at this point in the history
  • Loading branch information
danscales committed Jun 17, 2024
1 parent 0eaacfb commit 34b8b12
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lambdas/dispatcher/src/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,10 @@ def _sync(command: SyncCommand):
"WARNING",
f"No DyanamoDB rows found for sync type {sync_type}!"
)
LOGGER.warning(f"No DyanamoDB rows found for sync type {sync_type}!")
for row in sync_config:
syncer_jobs = syncer.build_jobs(row)
LOGGER.info(f"Processing row {row}, got jobs {syncer_jobs}!")
if syncer_jobs:
jobs += [job.dict() for job in syncer_jobs]

Expand Down

0 comments on commit 34b8b12

Please sign in to comment.