Skip to content

Commit

Permalink
misc: Change the error log message that is sent when the plugin fails…
Browse files Browse the repository at this point in the history
… to forcibly disable the 'force-key-authentication' option field to be more concise
  • Loading branch information
MemencioPerez committed Jan 2, 2025
1 parent a6966b3 commit aa6b80a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void onProxyInitialize(ProxyInitializeEvent event) {
getPluginLoadMessages().forEach(logger::info);
checkForUpdates();
} catch (NoSuchFieldException | IllegalAccessException e) {
logger.error("The plugin cannot find or access the 'force-key-authentication' option field of the Velocity configuration. If setting 'force-key-authentication' to 'false' manually and restarting the proxy does not work, contact the developer of this plugin.", e);
logger.error("Failed to access 'force-key-authentication' option in Velocity configuration. Try setting it to 'false' manually and restarting the proxy. If the issue persists, please contact the plugin developer for assistance.", e);
} catch (IOException e) {
logger.error("Cannot load configuration", e);
}
Expand Down

0 comments on commit aa6b80a

Please sign in to comment.