Browse Source

Moved call to #setOnFailed() to UpdateStatsService implementation

JaniruTEC 4 years ago
parent
commit
f0e1bcb899

+ 4 - 1
main/commons/src/main/java/org/cryptomator/common/vaults/VaultStats.java

@@ -36,7 +36,6 @@ public class VaultStats {
 		this.updateService = new UpdateStatsService();
 		updateService.setExecutor(executor);
 		updateService.setPeriod(Duration.seconds(1));
-		updateService.setOnFailed(event -> LOG.error("Error in UpdateStateService.", event.getSource().getException()));
 
 		state.addListener(this::vaultStateChanged);
 	}
@@ -60,6 +59,10 @@ public class VaultStats {
 
 	private class UpdateStatsService extends ScheduledService<Optional<CryptoFileSystemStats>> {
 
+		private UpdateStatsService() {
+			setOnFailed(event -> LOG.error("Error in UpdateStateService.", getException()));
+		}
+
 		@Override
 		protected Task<Optional<CryptoFileSystemStats>> createTask() {
 			return new Task<>() {