We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40554ae commit 84abd75Copy full SHA for 84abd75
core/src/main/java/ch/cyberduck/core/worker/Worker.java
@@ -69,7 +69,7 @@ public T run(final Session<?> session) throws BackgroundException {
69
* @param result Return value from worker
70
*/
71
public void cleanup(final T result) {
72
- //
+ log.debug("Cleanup with result {}", result);
73
}
74
75
/**
@@ -79,6 +79,7 @@ public void cleanup(final T result) {
79
* @param failure Null on success
80
81
public void cleanup(final T result, final BackgroundException failure) {
82
+ log.debug("Cleanup with result {} and failure {}", result, failure);
83
this.cleanup(result);
84
85
0 commit comments