Contents
Contents

Avoid print calls in production code.

This rule is available as of Dart 2.5.0.

Rule sets: flutter

This rule has a quick fix available.

Details

#

DO 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:

dart
void f(int x) {
  print('debug: $x');
  ...
}

GOOD:

dart
void f(int x) {
  debugPrint('debug: $x');
  ...
}

GOOD:

dart
void f(int x) {
  log('log: $x');
  ...
}

GOOD:

dart
void f(int x) {
  if (kDebugMode) {
      print('debug: $x');
  }
  ...
}

Usage

#

To enable the avoid_print rule, add avoid_print under linter > rules in your analysis_options.yaml file:

analysis_options.yaml
yaml
linter:
  rules:
    - avoid_print