How to disable all Logs [debugPrint()] in release build in flutter?

12.9k Views Asked by At

I have installed a release build apk in the android device but if I connect that device to Android studio then I am able to see all Logs/debugPrint statements.

Is there any way to disable the all the logs ?

3

There are 3 best solutions below

5
On

You can assign a dummy function to the global debugPrint variable:

import 'package:flutter/material.dart';

main() {
  debugPrint = (String message, {int wrapWidth}) {};
}
0
On

With latest Flutter versions returning empty function does not work. Returning null is not recommended and should be avoided - if used, it is marked with tag that void functions should not have null return. Instead empty string will not cause any issue and works perfectly:

main() {
  debugPrint = (String? message, {int? wrapWidth}) => '';
}
5
On

I combined the accepted answer with the idea from here and used it main.dart to silence all debugPrint everywhere.

const bool isProduction = bool.fromEnvironment('dart.vm.product');
void main() {
  if (isProduction) {      
      // analyser does not like empty function body
      // debugPrint = (String message, {int wrapWidth}) {};
      // so i changed it to this:
      debugPrint = (String? message, {int? wrapWidth}) => null;

  } 
  runApp(
    MyApp()
  );
}