mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-13 03:42:35 -06:00
0649fe96e2
The plugin manager was initializing the logger _after_ creating service clients which meant that service clients ended up relying on the global logger. Since the runtime package did not configure the log level on the global logger, the logs from the service clients were missing. This commit updates the plugin manager to initialize the logger _before_ creating service clients and updates the runtime package to set the log level on the global logger as a fallback. Fixes #4071 Signed-off-by: Torin Sandall <torinsandall@gmail.com>