Actions
Bug #7236
openplugins: custom transaction loggers cannot be registered by a plugin
Affected Versions:
Effort:
Difficulty:
Label:
Description
A plugin that might want to register custom transaction loggers cannot do so as the initialization point of the plugin occurs before the app-layer
portion of the configuration file has been processed. This results in the registration function failing to register the logger as the protocol is not enabled.
Possible solutions:
- Move the call to the plugin .Init function later (if this won't break anything)
- Move plugin loading later (if this won't break anything)
- Provide a new callback that happens sometime after app-layer
has been processed, but research what makes sense here.
Actions