Skip to content

Commit

Permalink
bugfix: unnecessary log handling
Browse files Browse the repository at this point in the history
  • Loading branch information
FerroEduardo committed Dec 20, 2023
1 parent d31873d commit dc43b96
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,8 @@ public void onGenericPermissionOverride(@NotNull GenericPermissionOverrideEvent
try {
droneManager.createControlPanel(voice);
} catch (KeyNotFoundException e) {
// Not Found...
// Not Found... ignoring
LOGGER.debug(method + " : error : " + e.getMessage());
handleException(e, event);
}
}
} catch (Exception e) {
Expand All @@ -180,9 +179,8 @@ public void onGenericChannelUpdate(@NotNull GenericChannelUpdateEvent<?> event)
try {
droneManager.createControlPanel(channel);
} catch (KeyNotFoundException e) {
// Not Found...
// Not Found... ignoring
LOGGER.debug("onGenericChannelUpdate : error : " + e.getMessage());
handleException(e, event);
}
}
} catch (Exception e) {
Expand Down

0 comments on commit dc43b96

Please sign in to comment.