From 4ecfda0014feca995c129a595ef264fd19a5810f Mon Sep 17 00:00:00 2001 From: bwees Date: Wed, 21 May 2025 10:58:53 -0500 Subject: [PATCH] remove prints --- mobile/lib/repositories/gcast.repository.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/mobile/lib/repositories/gcast.repository.dart b/mobile/lib/repositories/gcast.repository.dart index ee3e721dab..fbe950d680 100644 --- a/mobile/lib/repositories/gcast.repository.dart +++ b/mobile/lib/repositories/gcast.repository.dart @@ -19,7 +19,6 @@ class GCastRepository { GCastRepository(); Future connect(CastDevice device) async { - print("Connecting to ${device.name}"); _castSession = await CastSessionManager().startSession(device); _castSession?.stateStream.listen((state) { @@ -38,8 +37,6 @@ class GCastRepository { 'type': 'LAUNCH', 'appId': 'CC1AD845', }); - - print("Connected to ${device.name}"); } Future disconnect() async {