Skip to content

Commit

Permalink
Merge pull request #97 from planetlabs/fix-ingestion-logging
Browse files Browse the repository at this point in the history
Storage: Bump down logging level for ingestion.
  • Loading branch information
ABPLMC authored Aug 6, 2024
2 parents 6932fb0 + 5d485a3 commit 1e34aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingester/datalake_ingester/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def store_latest(self, record):
)
self.logger.info("Record stored successfully.")
except ConditionalCheckFailedException:
self.logger.error(f"Condition not met for record {record},"
self.logger.debug(f"Condition not met for record {record},"
"no operation was performed.")
except Exception as e:
self.logger.error(f"Error occurred while attempting {record}: {str(e)}")
Expand Down

0 comments on commit 1e34aac

Please sign in to comment.