Skip to content

Commit

Permalink
Log reason when no update is found.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Dec 25, 2024
1 parent d1d29b2 commit 3d01900
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ default void updater_didFindValidUpdate(SPUUpdater updater, SUAppcastItem item)
*
* @param updater The updater instance.
*/
default void updaterDidNotFindUpdate(SPUUpdater updater) {
log.debug("No update found");
default void updaterDidNotFindUpdate_error(SPUUpdater updater, NSError error) {
log.debug("Did not find update {}", error);
}

/**
Expand Down

0 comments on commit 3d01900

Please sign in to comment.