Skip to content

Commit

Permalink
Fix Timber lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
lognaturel authored Apr 7, 2017
1 parent 76e937b commit ea0773b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private MediaLayout createQuestionMediaLayout(FormEntryPrompt p) {
try {
mPlayColor = Color.parseColor(playColorString);
} catch (IllegalArgumentException e) {
Timber.e(e, "Argument %s is incorrect", playColorString, e.getMessage());
Timber.e(e, "Argument %s is incorrect");
}
}
questionMediaLayout.setPlayTextColor(mPlayColor);
Expand All @@ -159,7 +159,7 @@ private MediaLayout createQuestionMediaLayout(FormEntryPrompt p) {
try {
mPlayBackgroundColor = Color.parseColor(playBackgroundColorString);
} catch (IllegalArgumentException e) {
Timber.e(e, "Argument %s is incorrect", playBackgroundColorString, e.getMessage());
Timber.e(e, "Argument %s is incorrect", playBackgroundColorString);
}
}
questionMediaLayout.setPlayTextBackgroundColor(mPlayBackgroundColor);
Expand Down

0 comments on commit ea0773b

Please sign in to comment.