Skip to content

Commit 84abd75

Browse files
committed
Logging.
1 parent 40554ae commit 84abd75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/java/ch/cyberduck/core/worker/Worker.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public T run(final Session<?> session) throws BackgroundException {
6969
* @param result Return value from worker
7070
*/
7171
public void cleanup(final T result) {
72-
//
72+
log.debug("Cleanup with result {}", result);
7373
}
7474

7575
/**
@@ -79,6 +79,7 @@ public void cleanup(final T result) {
7979
* @param failure Null on success
8080
*/
8181
public void cleanup(final T result, final BackgroundException failure) {
82+
log.debug("Cleanup with result {} and failure {}", result, failure);
8283
this.cleanup(result);
8384
}
8485

0 commit comments

Comments
 (0)