Skip to content

Commit

Permalink
修改日志缺陷
Browse files Browse the repository at this point in the history
  • Loading branch information
heavyrain2012 committed Nov 27, 2019
1 parent b0ca8ed commit 2adc030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion broker/src/main/java/cn/wildfirechat/push/PushServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void init(IConfig config, ISessionsStore sessionsStore) {
}

public void pushMessage(PushMessage pushMessage, String deviceId, String pushContent) {
LOG.info("try to delivery push diviceId = {}, pushContent", deviceId, pushContent);
LOG.info("try to delivery push diviceId = {}, pushContent = {}", deviceId, pushContent);
executorService.execute(() ->{
try {
pushMessageInternel(pushMessage, deviceId, pushContent);
Expand Down
2 changes: 1 addition & 1 deletion broker/src/main/java/win/liyufan/im/HttpUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void onFailure(Call call, IOException e) {

@Override
public void onResponse(Call call, Response response) throws IOException {
LOG.info("POST to {} success with response", url, response.body().string());
LOG.info("POST to {} success with response: {}", url, response.body());
}
});
}
Expand Down

0 comments on commit 2adc030

Please sign in to comment.