mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix broken log call
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=137392736
This commit is contained in:
parent
ced03e9ad5
commit
70cc98bb99
1 changed files with 1 additions and 1 deletions
|
|
@ -371,7 +371,7 @@ import java.util.Locale;
|
||||||
} else if (entry instanceof CommentFrame) {
|
} else if (entry instanceof CommentFrame) {
|
||||||
CommentFrame commentFrame = (CommentFrame) entry;
|
CommentFrame commentFrame = (CommentFrame) entry;
|
||||||
Log.d(TAG, prefix + String.format("%s: language=%s description=%s", commentFrame.id,
|
Log.d(TAG, prefix + String.format("%s: language=%s description=%s", commentFrame.id,
|
||||||
commentFrame.language, commentFrame.description, commentFrame.text));
|
commentFrame.language, commentFrame.description));
|
||||||
} else if (entry instanceof Id3Frame) {
|
} else if (entry instanceof Id3Frame) {
|
||||||
Id3Frame id3Frame = (Id3Frame) entry;
|
Id3Frame id3Frame = (Id3Frame) entry;
|
||||||
Log.d(TAG, prefix + String.format("%s", id3Frame.id));
|
Log.d(TAG, prefix + String.format("%s", id3Frame.id));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue