Commit d623d073 authored by rch's avatar rch Committed by Commit bot

Fix the QUIC_FLAG_COUNT_IMPL to actually log the flag name.

old: FLAG_##flag: 1
new: FLAG_quic_reloadable_flag_quic_flow_control_faster_autotune: 1
Review-Url: https://codereview.chromium.org/2846673007
Cr-Commit-Position: refs/heads/master@{#468138}
parent 913ee5fe
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
#ifndef NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_ #ifndef NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_
#define NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_ #define NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_
#define QUIC_FLAG_COUNT_IMPL(flag) DVLOG(1) << "FLAG_##flag: " << FLAGS_##flag #define QUIC_FLAG_COUNT_IMPL(flag) \
DVLOG(1) << "FLAG_" #flag ": " << FLAGS_##flag
#define QUIC_FLAG_COUNT_N_IMPL(flag, instance, total) QUIC_FLAG_COUNT_IMPL(flag) #define QUIC_FLAG_COUNT_N_IMPL(flag, instance, total) QUIC_FLAG_COUNT_IMPL(flag)
#endif // NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_ #endif // NET_QUIC_PLATFORM_IMPL_QUIC_FLAG_UTILS_IMPL_H_
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment