-
Notifications
You must be signed in to change notification settings - Fork 361
Closed
Labels
Description
I use the developer.log(...) command like described here: https://docs.flutter.dev/testing/code-debugging
import 'dart:developer' as developer;
void main() {
developer.log('log me', name: 'my.app.category');
developer.log('log me 1', name: 'my.other.category');
developer.log('log me 2', name: 'my.other.category');
}
I can see the logs in the logging view. But i would like to see the log message already in the column table view. At the moment I have to click on the row entry to see the details in the bottom details.
Current status:
- the table column
kindshows entries with my.app.category - the message log me 1 or log me 2 are only shown in details when clicking on the table row
My wish:
- the message log me 1 or log me 2 are shown in the
messagecolumn
Output from flutter --version:
Flutter 3.0.1 • channel stable • https://github.com/flutter/flutter.git
Framework • revision fb57da5f94 (3 days ago) • 2022-05-19 15:50:29 -0700
Engine • revision caaafc5604
Tools • Dart 2.17.1 • DevTools 2.12.2
arielt, xni06, rayk, changyiyao, Adam-D-Lewis and 1 more