-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Startup warnings #6
Comments
and also The plugin does not work on my paper 1.21 server |
and also Error java.lang.IllegalStateException: ReflectionHelper is not set up! in the PlayerTime plugin indicates that the ReflectionHelper component used to send JSON messages to players was not initialized correctly. |
[17:48:48 WARN]: [AutoSaveWorld] Plugin PlayerTime attempted to establish connection https://api.spigotmc.org/legacy/update.php?resource=58915 in main server thread
[17:48:48 WARN]: [AutoSaveWorld] Plugin PlayerTime attempted to establish connection socket://api.spigotmc.org:443 in main server thread
The plugin attempts to establish a connection to the Spigot servers on the main server thread. This can cause lag and delays since the main thread is responsible for processing game events.
[17:48:48 WARN]: Nag author(s): '[blockslayer22]' of 'PlayerTime v1.0.7-RELEASE' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
The plugin uses System.out for console output and optionally System.err for errors. This is a bad practice that makes debugging difficult and can cause performance problems. It is recommended to use the logger provided by Spigot.
The text was updated successfully, but these errors were encountered: