flutter_packages icon indicating copy to clipboard operation
flutter_packages copied to clipboard

Print statements in flutter_gpiod package

Open JesseRiemens opened this issue 7 months ago • 0 comments

The flutter_gpiod package contains some print statements that aren't useful:

 print('before isolate.spawn');

    Isolate.spawn(
      _eventIsolateEntry2,
      [
        receivePort.sendPort,
        epollFd,
      ],
      onError: errorReceivePort.sendPort,
      debugName: 'flutter_gpiod event listener',
    );

    print('after isolate.spawn');

Can these be removed?

JesseRiemens avatar Nov 29 '23 10:11 JesseRiemens