In release mode of flutter app, are console logs printed out with log
method from dart:developer
are visible? From docs of release mode we can read that
Debugging information is stripped out. Debugging is disabled.
and I assume it strip out everything printed with debugPrint
method, but I couldn't found anything about log
method.
Same goes for output with print
method? Are those prints will be visible for user who will be reading device log output or not? Dart linter only says that print should be avoided in production code, I assume because of print output visibility.
Chapter in flutter docs about logging says how to use them but not really answer questions above.