Group: errors
Maturity: stable
Dart SDK: >= 2.5.0 • (Linter v0.1.93)
Since info is static, may be staleDO avoid print
calls in production code.
For production code, consider using a logging framework.
If you are using Flutter, you can use debugPrint
or surround print
calls with a check for kDebugMode
BAD:
void f(int x) {
print('debug: $x');
...
}
GOOD:
void f(int x) {
debugPrint('debug: $x');
...
}
GOOD:
void f(int x) {
log('log: $x');
...
}
GOOD:
void f(int x) {
if (kDebugMode) {
print('debug: $x');
}
...
}
To enable the avoid_print
lint,
add avoid_print
under linter > rules in your
analysis_options.yaml
file:
linter:
rules:
- avoid_print