ardera / flutter_packages

My collected packages for pub.dev
MIT License
28 stars 7 forks source link

Print statements in flutter_gpiod package #27

Open JesseRiemens opened 7 months ago

JesseRiemens commented 7 months ago

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?