Skip to content

Commit

Permalink
bugfix: Invalid printf-style format string
Browse files Browse the repository at this point in the history
  • Loading branch information
lepdou committed Mar 12, 2017
1 parent d327f07 commit 842e35b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void onAppInfoChange(AppInfoChangedEvent event) {
appAPI.updateApp(env, appDTO);
} catch (Throwable e) {
logger.error("Update app's info failed. Env = {}, AppId = {}", env, appId, e);
Tracer.logError(String.format("Update app's info failed. Env = {}, AppId = {}", env, appId), e);
Tracer.logError(String.format("Update app's info failed. Env = %s, AppId = %s", env, appId), e);
}
}

Expand Down

0 comments on commit 842e35b

Please sign in to comment.