Move log statement into "if (DEBUG)"
This commit is contained in:
parent
0a80cc1d02
commit
3abe2423c0
1 changed files with 4 additions and 2 deletions
|
|
@ -291,8 +291,10 @@ public final class BookmarkFragment
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.d(TAG, "Updating playlist id=[" + id +
|
if (DEBUG) {
|
||||||
"] with new name=[" + name + "] items");
|
Log.d(TAG, "Updating playlist id=[" + id +
|
||||||
|
"] with new name=[" + name + "] items");
|
||||||
|
}
|
||||||
|
|
||||||
localPlaylistManager.renamePlaylist(id, name);
|
localPlaylistManager.renamePlaylist(id, name);
|
||||||
final Disposable disposable = localPlaylistManager.renamePlaylist(id, name)
|
final Disposable disposable = localPlaylistManager.renamePlaylist(id, name)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue