mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-28 12:07:38 +01:00
Put whole block into try-catch (just in case)
This commit is contained in:
parent
b9f293f8a7
commit
14384f6bfa
@ -207,20 +207,20 @@ public class Essentials extends JavaPlugin implements net.ess3.api.IEssentials {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
metrics = new MetricsLite(this);
|
metrics = new MetricsLite(this);
|
||||||
|
if (!metrics.isOptOut()) {
|
||||||
|
getLogger().info("Starting Metrics. Opt-out using the global PluginMetrics config.");
|
||||||
|
new BukkitRunnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
metrics.start();
|
||||||
|
}
|
||||||
|
}.runTaskAsynchronously(this);
|
||||||
|
} else {
|
||||||
|
getLogger().info("Metrics disabled per PluginMetrics config.");
|
||||||
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// Failed to submit the stats :-(
|
// Failed to submit the stats :-(
|
||||||
}
|
}
|
||||||
if (!metrics.isOptOut()) {
|
|
||||||
getLogger().info("Starting Metrics. Opt-out using the global PluginMetrics config.");
|
|
||||||
new BukkitRunnable() {
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
metrics.start();
|
|
||||||
}
|
|
||||||
}.runTaskAsynchronously(this);
|
|
||||||
} else {
|
|
||||||
getLogger().info("Metrics disabled per PluginMetrics config.");
|
|
||||||
}
|
|
||||||
|
|
||||||
final String timeroutput = execTimer.end();
|
final String timeroutput = execTimer.end();
|
||||||
if (getSettings().isDebug()) {
|
if (getSettings().isDebug()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user