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

Display error message while laoding geyser plugins #33990

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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