Skip to content

Commit

Permalink
Merge pull request #63 from tokinonagare/patch-1
Browse files Browse the repository at this point in the history
缺少 Flog Tag & 确少 分隔符
  • Loading branch information
liaohuqiu committed Nov 24, 2016
2 parents a7a45cc + 07e1f4a commit 856053d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _docs/01-listening-download-events.md
Expand Up @@ -43,12 +43,12 @@ ControllerListener controllerListener = new BaseControllerListener<ImageInfo>()

@Override
public void onIntermediateImageSet(String id, @Nullable ImageInfo imageInfo) {
FLog.d("Intermediate image received");
FLog.d("onIntermediateImageSet", "Intermediate image received");
}

@Override
public void onFailure(String id, Throwable throwable) {
FLog.e(getClass(), throwable, "Error loading %s", id)
FLog.e(getClass(), throwable, "Error loading %s", id);
}
};

Expand Down

0 comments on commit 856053d

Please sign in to comment.