Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Display error message while laoding geyser plugins (#33990)
Browse files Browse the repository at this point in the history
  • Loading branch information
godmodegalactus authored Nov 8, 2023
1 parent 03a456e commit 7cdfba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geyser-plugin-manager/src/geyser_plugin_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}

Expand Down

0 comments on commit 7cdfba9

Please sign in to comment.