Skip to content

Commit

Permalink
chore: extend error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmxb authored Nov 28, 2024
1 parent 338608d commit 898b01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/core/services/plugin_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (pm *PluginManager) LoadGoPlugin(name string) (commons.DruidPluginInterface
// but removes the SecureConfig is nil warning.
pluginChecksum, err := getPluginExecutableChecksum(path)
if err != nil {
return nil, fmt.Errorf("unable to generate a checksum for the plugin %s", path)
return nil, fmt.Errorf("unable to generate a checksum for the plugin %s: %w", path, err)
}

// We're a host! Start by launching the plugin process.
Expand Down

0 comments on commit 898b01b

Please sign in to comment.