Skip to content

Commit

Permalink
Remove log messages that were confusing and not required. (#2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
ne0rrmatrix authored Aug 21, 2024
1 parent a4762f7 commit 39862e6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ static void BroadcastUpdate(string receiver, string action)
{
if (Build.VERSION.SdkInt >= BuildVersionCodes.Tiramisu)
{
System.Diagnostics.Trace.WriteLine($"{LocalBroadcastManager.GetInstance} not supported on Android 13 and above.");
return;
}
var intent = new Intent(receiver);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,6 @@ void BroadcastUpdate(string action)
{
if (Build.VERSION.SdkInt >= BuildVersionCodes.Tiramisu)
{
Logger.LogError("{LocalBroadcastManager} not supported on Android 13 and above.", typeof(LocalBroadcastManager));
return;
}
Intent intent = new(MediaControlsService.ACTION_UPDATE_UI);
Expand Down

0 comments on commit 39862e6

Please sign in to comment.