Improve logging throughtout the framework #99
Labels
documentation
Improvements or additions to documentation
good first issue
Good for newcomers
task
tech debt
As a developer I want to...
be able to see which events log messages
So that...
I can understand what is happening during code execution.
Context
We have a lot of code and lots of moving parts. If something goes wrong, we should be able to identify issues and state by looking at the logs. So we should improve our log coverage to capture everything that is happening within the system.
Ideally, everything should be logged using a mixture of all logging level severities (trace, info, warn, debug, error).
Additonally, we should probably trace method entry/exits so when issues are raised by end users we have the complete step-by-step of the execution for debugging.
Acceptance Criteria
GIVEN a method is invoked
THEN appropriate logging messages should be printed
GIVEN a choice statement
THEN logging should be present to indicate the flow
The text was updated successfully, but these errors were encountered: