Move log statement into "if (DEBUG)"
This commit is contained in:
parent
b5ea61a079
commit
90c20f124b
|
@ -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…
Reference in New Issue