Is there a better way than log.error to log events to prod cloud env?
We frequently need to log something (e.g. audit or unusual events, or just something we want to keep track of) on the production instance. However, the only log level available on prod is log.error. So we use log.error for general logging on production. This has the unfortunate side effect that we cant search for errors in the prod logs, as there are a lot of non errors in there.
Any better suggestions?