Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
convert log message to use varargs
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Huang committed Sep 25, 2014
1 parent 86dd6c7 commit 5560884
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -613,9 +613,9 @@ private void pushTargetDocToServer(final String docUri,
if (!getOpts().isDryRun()) {
log.info(
"Pushing target doc [name={} size={} client-locale={}] to server [locale={}]",
new Object[] { localDocName,
targetDoc.getTextFlowTargets().size(),
locale.getLocalLocale(), locale.getLocale() });
localDocName,
targetDoc.getTextFlowTargets().size(),
locale.getLocalLocale(), locale.getLocale());

ConsoleUtils.startProgressFeedback();

Expand Down

0 comments on commit 5560884

Please sign in to comment.