You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
On the client we have several logs for the plugin loading process.
"Loaded plugin PickRandomUserPlugin"
"2/2 plugins loaded"
However, in the case of not being able to load a plugin (bad url or version incompatibility), we need to log (error level)
the name of the plugin, the error, a logCode so these could be spotted.
The text was updated successfully, but these errors were encountered:
It seems we already have the 'plugin_load_error' logCode for that.
Now, as for the version compatibility, we still need to add a blocker to not load versions that are not compatible (SDK match). IMO, this would need to be done in akka, so the initial idea I had was to have the SDK version duplicated into settings.yml, this would be read by akka and it could block plugin manifests that requires different versions that what the client has.
Of course that's open for discussion, but that's my initial ideia of how to do that.
And on the logging discussion, this error log would be located in akka.
Describe the bug
On the client we have several logs for the plugin loading process.
"Loaded plugin PickRandomUserPlugin"
"2/2 plugins loaded"
However, in the case of not being able to load a plugin (bad url or version incompatibility), we need to log (error level)
the name of the plugin, the error, a logCode so these could be spotted.
The text was updated successfully, but these errors were encountered: