diff --git a/mobile/lib/services/gcast.service.dart b/mobile/lib/services/gcast.service.dart index 321358a46f0..eb2b3ee756d 100644 --- a/mobile/lib/services/gcast.service.dart +++ b/mobile/lib/services/gcast.service.dart @@ -56,7 +56,6 @@ class GCastService implements ICastDestinationService { } void _onCastStatusCallback(CastSessionState state) { - print("Cast session state changed: $state"); if (state == CastSessionState.connected) { onConnectionState?.call(true); isConnected = true; @@ -68,7 +67,6 @@ class GCastService implements ICastDestinationService { } void _onCastMessageCallback(Map message) { - print("Received cast message: $message"); switch (message['type']) { case "MEDIA_STATUS": _handleMediaStatus(message); @@ -170,7 +168,6 @@ class GCastService implements ICastDestinationService { @override void loadMedia(Asset asset, bool reload) async { - print("Loading media for asset: ${asset.remoteId}"); if (!isConnected) { return; } else if (asset.remoteId == null) { @@ -179,8 +176,6 @@ class GCastService implements ICastDestinationService { return; } - print("tried to send it!"); - // create a session key if (!isSessionValid()) { sessionKey = await _sessionsApiService.createSession(