magillus / flutter-fimber

Fimber is Flutter logger inspired by Timber (logger API for Android)
106 stars 22 forks source link

Passing a StackTrace to Fimber doesn't log it #115

Closed paricleu closed 2 years ago

paricleu commented 2 years ago

I noticed that when passing a StackTrace to Fimber it isn't printed like the "error" parameter.

try {
   [...]
} catch (e, stacktrace) {
  Fimber.e("An Error", stacktrace: stacktrace);            //  logs only "An Error"
  Fimber.e(stacktrace.toString());                         //  logs the whole stacktrace
}
magillus commented 2 years ago

Will try to take a look at this next weekend

magillus commented 2 years ago

Thank you for reporting it.

magillus commented 2 years ago

Version 0.6.5 should have this fixed