magillus / flutter-fimber

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

Add DebugTree option with DevTools logging #67

Open magillus opened 4 years ago

magillus commented 4 years ago

See: https://flutter.dev/docs/testing/code-debugging#logging use:

import 'dart:developer' as developer;

developer.log(
    'log me',
    name: 'my.app.category',
    error: jsonEncode(myCustomObject),
  );
danielgomezrico commented 2 years ago

Cool idea, the debugger on dev tools is pretty nice compared to the one from the console

danielgomezrico commented 2 years ago

Why this helps? I can see the logs in the debugger using the current DebugTree:

image