Member-only story

The Right Way To Flutter App Logging

Fred Grott
2 min readJul 7, 2022

--

While I prepare the article series on my devOPS set up for flutter app design, let me start out with how to implement app logging in an easy and more flutter power way.

Why Use Logging Packages

So the main thing we want in our flutter app logging is performance speed since it will operate in the released version of the app. Unfortunately, most of the logging packages at Pub.dev are in fact legacy packages and do not integrate with the async stream package and thus have bad performance for app logging.

The correct logging packages to use are those that integrate with the async package, and those are;

There are two steps in the implementation.

The Implementation

--

--

Fred Grott
Fred Grott

No responses yet