mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-02-16 19:50:35 +01:00
Remove noisy log calls
This commit is contained in:
parent
8d4d1ba660
commit
4787924fcc
@ -1377,11 +1377,9 @@ public class PlayerFragment extends Fragment implements GestureDetector.OnGestur
|
||||
case DOWNLOADING:
|
||||
final long bytes = currentPlaying != null ? currentPlaying.getPartialFile().length() : 0;
|
||||
String downloadStatus = getResources().getString(R.string.download_playerstate_downloading, Util.formatLocalizedBytes(bytes, getContext()));
|
||||
Timber.d("Player set title");
|
||||
FragmentTitle.Companion.setTitle(PlayerFragment.this, downloadStatus);
|
||||
break;
|
||||
case PREPARING:
|
||||
Timber.d("Player set title");
|
||||
FragmentTitle.Companion.setTitle(PlayerFragment.this, R.string.download_playerstate_buffering);
|
||||
break;
|
||||
case STARTED:
|
||||
@ -1389,17 +1387,14 @@ public class PlayerFragment extends Fragment implements GestureDetector.OnGestur
|
||||
|
||||
if (mediaPlayerController != null && mediaPlayerController.isShufflePlayEnabled())
|
||||
{
|
||||
Timber.d("Player set title");
|
||||
FragmentTitle.Companion.setTitle(PlayerFragment.this, R.string.download_playerstate_playing_shuffle);
|
||||
}
|
||||
else
|
||||
{
|
||||
Timber.d("Player set title");
|
||||
FragmentTitle.Companion.setTitle(PlayerFragment.this, R.string.common_appname);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
Timber.d("Player set title");
|
||||
FragmentTitle.Companion.setTitle(PlayerFragment.this, R.string.common_appname);
|
||||
break;
|
||||
case IDLE:
|
||||
|
Loading…
x
Reference in New Issue
Block a user