Skip to content

Commit

Permalink
Added metrics.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Apr 18, 2015
1 parent 3bed854 commit 3c5dd37
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/multiworldmoney/MultiWorldMoney.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,13 @@ public void onEnable() {
getCommand("pay").setExecutor(new PayCommand(this));
getCommand("balance").setExecutor(new BalanceCommand(this));
getCommand("mwm").setExecutor(new AdminCommands(this));

// Metrics
try {
final Metrics metrics = new Metrics(this);
metrics.start();
} catch (final IOException localIOException) {
}
}


Expand Down

0 comments on commit 3c5dd37

Please sign in to comment.