Hello,
We have a plugin which outputs some logging statements using hclog, e.g.
hclog.Default().Info("request: ")
This does not show up in Vault log file unless vault server is running in debug log-level. When this is enabled, the log output looks like this:
2018-07-11T13:01:39.664-0500 [DEBUG] secrets.plugin.plugin_709b84ca.vault-nsqauth.vault-nsqauth: 2018-07-11T13:01:39.664-0500 [INFO ] Adding token WXkJjEIa4enurAfqEbLEDgvmPHJaFZpoHc9LymnsZGgqOk0ZvUZe2ZNRPiavSp3Y for topics: fb_post
You can see in above example the plugin logs with INFO level, but Vault only outputs these if running with log-level set to debug.
Is there a way to get Vault to log these normally without running the server in debug?