-
-
Notifications
You must be signed in to change notification settings - Fork 96
fix: add missing error and exception details to console logs #398
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
base: master
Are you sure you want to change the base?
Conversation
Reviewer's GuideUpdate generateTextMessage implementations in TalkerData and TalkerLog to include missing error and exception details and replace raw message usage with displayMessage, ensuring full context is logged. Class diagram for updated TalkerData and TalkerLog message generationclassDiagram
class TalkerData {
+String displayTitleWithTime(TimeFormat timeFormat)
+String displayMessage
+String displayException
+String displayError
+String displayStackTrace
+String generateTextMessage(TimeFormat timeFormat)
}
class TalkerLog {
+String generateTextMessage(TimeFormat timeFormat)
}
TalkerLog --|> TalkerData
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @Zekfad ! |
Bugfix for missing error and exception details
Describe the bug
TalkerData#generateTextMessage
is missingdisplayException
anddisplayError
, usesmessage
instead ofdisplayMessage
which could cause "null" string in logs (intended?).TalkerLog#generateTextMessage
is missingdisplayError
which prevents printing errors to console log.To Reproduce
Expected behavior
Summary by Sourcery
Ensure that error and exception details, along with the proper displayMessage, are included in console log output generated by TalkerData and TalkerLog
Bug Fixes: