We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8580253 commit 57f94f4Copy full SHA for 57f94f4
src/main/java/net/clementraynaud/skoice/tasks/UpdateNetworksTask.java
@@ -19,6 +19,7 @@
19
20
package net.clementraynaud.skoice.tasks;
21
22
+import com.bugsnag.Severity;
23
import net.clementraynaud.skoice.Skoice;
24
import net.clementraynaud.skoice.storage.config.ConfigField;
25
import net.clementraynaud.skoice.system.LinkedPlayer;
@@ -135,7 +136,9 @@ private void run() {
135
136
.filter(Objects::nonNull)
137
.count();
138
ProximityChannels.clean(possibleUsers);
-
139
+ } catch (Throwable throwable) {
140
+ Skoice.analyticManager().getBugsnag().notify(throwable, Severity.ERROR);
141
+ throw throwable;
142
} finally {
143
this.lock.unlock();
144
}
0 commit comments