Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aggregate errors in non-verbose summary #121

Merged
merged 8 commits into from
Sep 1, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add new line after error
  • Loading branch information
robertdstein committed Sep 1, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 1a29c8877c1e54517338b76bc0984424e1bc57b5
2 changes: 1 addition & 1 deletion winterdrp/errors/__init__.py
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ def message_known_error(self) -> str:
def generate_log_message(self) -> str:
return f"Error for processor {self.processor_name} at time {self.t_error} UT: " \
f"{type(self.error).__name__} affected batch of length {len(self.contents)}. " \
f"{self.message_known_error()}" \
f"{self.message_known_error()}. \n" \


def generate_full_traceback(self) -> str: