Multi level debug support #407
PhilDay-CT
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
I think this is a good idea. I've wanted to replace that bool with a severity level enum for a while, then add a severity template argument to |
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
-
I was recently hitting an issue when using the network stack of running out of memory, but I couldn't see that was the issue because the debug output in the network stack is disabled by default. Enabling it seems to also be expensive in memory terms, so it just shifted the issue. It would be nice / helpful to be able to enable only error messages. We could do this with the current code with something like:
The driver_adaptor code has it's own workaround for an unmaskable message with:
Beta Was this translation helpful? Give feedback.
All reactions