diff --git a/packages/flutter_gpiod/lib/src/gpiod.dart b/packages/flutter_gpiod/lib/src/gpiod.dart index f865ec0..148c8f8 100644 --- a/packages/flutter_gpiod/lib/src/gpiod.dart +++ b/packages/flutter_gpiod/lib/src/gpiod.dart @@ -277,8 +277,6 @@ class PlatformInterface { final receivePort = ReceivePort(); final errorReceivePort = ReceivePort(); - print('before isolate.spawn'); - Isolate.spawn( _eventIsolateEntry2, [ @@ -289,8 +287,6 @@ class PlatformInterface { debugName: 'flutter_gpiod event listener', ); - print('after isolate.spawn'); - errorReceivePort.listen((message) { throw RemoteError(message[0], message[1]); });