Replies: 1 comment 1 reply
-
Great idea and I think that looks good. Possibly could have a |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As we mature with our implementation of LANA, it's become clear that the existing
errorType
=implicit
orexplicit
does not cover the full realm of possibilities teams may want to send in, monitor, and alert upon.To that end, I've added support for a
severity
parameter in the LANA AIO app (not yet promoted to production) with values [1]. TheerrorType
variable remains, and a user can still specifyimplicit
orexplicit
as desired. Nothing changes there.A message can include only one severity, and messages by default will be classified as
info
if not otherwise specified. If someone enablesdebug
mode and does not otherwise specify a type, it will instead default the severity todebug
.Are there any other logging levels missing or implementation concerns? I'll need to update the Milo lana logger to support it, then will submit a PR.
[1]
Beta Was this translation helpful? Give feedback.
All reactions