How to filter logging of Flutter app in IntelliJ console?

2,289

Update: Latest version of Android Studio doesn't carry this feature anymore.


Go to

Setting/Preferences -> Languages & Framework -> Flutter

Check

Replace the Run and Debug console output with a custom Flutter Logging view

enter image description here

After that you'll be able to see your logs easily by using search functionality.

Share:
2,289
Cold_Class
Author by

Cold_Class

Things I worked with: Interactive PDF Forms / SAP Adobe Forms (JavaScript for Acrobat) SAP R/3 7.4 (ABAP development) PHP (TYPO3 v.4-8 / WordPress CMS) JavaScript (ES5/ES6, jQuery, AngularJS, React) Node.js GatsbyJS CSS (Less, SCSS, Bootstrap 3 + 4) HTML5 ROS - Robot Operating System (C++, Python) App development with Flutter (Dart) I'm very eager to learn more things related to new technology! I love robots and automation! :D As a hobby I love doing music related stuff (composing, producing, etc.)!

Updated on December 13, 2022

Comments

  • Cold_Class
    Cold_Class over 1 year

    When developing a Flutter app - I'm mostly interested in the logging messages I create with print() - in this case the logger is called I/flutter(4th row in picture).
    But I'm getting spammed by many other loggers as you can see below.

    Is there an easy way to turn all other loggers besides I/flutter off and on?

    enter image description here