We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
below is the minimal example that demonstrates the issue. I can send the possible fix.
int TestVlogHelper() { if (VLOG_IS_ON(1)) { return 1; } return 0; } void TestVLogModule() { int c = TestVlogHelper(); CHECK_EQ(0, c); CHECK_EQ(0, SetVLOGLevel("logging_unittest", 1)); c = TestVlogHelper(); CHECK_EQ(1, c); // Fails here. }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
below is the minimal example that demonstrates the issue.
I can send the possible fix.
The text was updated successfully, but these errors were encountered: