-
-
Notifications
You must be signed in to change notification settings - Fork 101
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Console logs missing exception/error info in verbose level.
To Reproduce
Steps to reproduce the behavior:
- Use
talker.verbose('Message', Exception(), StackTrace.current); - Message and stack trace is present, but error is swallowed in console output.
- TalkerScreen displays error information.
Expected behavior
Error should be printed as well.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (web):
- OS: Windows 10
- Browser Chrome
- Version 124.0.6367.8
Additional context
To fix the problem TalkerData#generateTextMessage (talker/lib/src/models/talker_data.dart) should also include $displayError like so:
String generateTextMessage() {
return '$displayTitleWithTime$message$displayError$displayStackTrace';
}Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working