LogSeverity and FLAGS_minloglevel #1628
joeyparrish
started this conversation in
General
Replies: 2 comments 1 reply
-
A quick patch seems to work for me. If there's no reason to avoid it, I can send a PR. |
Beta Was this translation helpful? Give feedback.
0 replies
-
The documentation appears to be out of date, but |
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
Uh oh!
There was an error while loading. Please reload this page.
-
log_severity.h says:
But
FLAGS_minloglevel
is defined asint
, so the parser won't accept--minloglevel=INFO
.Is there any reason why
FLAGS_minloglevel
can't be defined as typeLogSeverity
? It would seem to be backward compatible if it were, since theLogSeverity
parser accepts ints.Thanks!
Beta Was this translation helpful? Give feedback.
All reactions