Display error message while laoding geyser plugins (#33990)

This commit is contained in:
galactus 2023-11-08 19:16:42 +01:00 committed by GitHub
parent 03a456e7bb
commit 7cdfba9259
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -260,13 +260,13 @@ pub enum GeyserPluginManagerError {
#[error("Invalid plugin path")]
InvalidPluginPath,
#[error("Cannot load plugin shared library")]
#[error("Cannot load plugin shared library (error: {0})")]
PluginLoadError(String),
#[error("The geyser plugin {0} is already loaded shared library")]
PluginAlreadyLoaded(String),
#[error("The GeyserPlugin on_load method failed")]
#[error("The GeyserPlugin on_load method failed (error: {0})")]
PluginStartError(String),
}