release app use logger #104
-
|
I'm using your logger library in a Flutter project and I've noticed that when building a release app, no logs are printed at all—even for error-level messages. In debug mode, logs work perfectly, but in release mode, nothing appears in the console, even when the log level is set to Level.error. I've checked the build configuration and confirmed that code stripping or obfuscation isn't removing the logging calls. Is this expected behavior in release mode? If so, is there a way to still enable error-level logging in release builds? Or do I need to adjust any build settings in build.gradle or Flutter to make it work? Thanks for your great work on this library! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi, it seems like you are using the default |
Beta Was this translation helpful? Give feedback.
Hi, it seems like you are using the default
LogFilter, please have a look here: #43 (comment).