Commit 4539c540 by Abseil Team Committed by Copybara-Service

[log] Correct SetVLOGLevel to SetVLogLevel in comments

PiperOrigin-RevId: 616818246
Change-Id: I1ee813dd1b4da2d25d6b1b9cdba9e8f70d6a6d90
parent 5839a148
...@@ -46,12 +46,12 @@ ...@@ -46,12 +46,12 @@
// Files which do not match any pattern in `--vmodule` use the value of `--v` as // Files which do not match any pattern in `--vmodule` use the value of `--v` as
// their effective verbosity level. The default is 0. // their effective verbosity level. The default is 0.
// //
// SetVLOGLevel helper function is provided to do limited dynamic control over // SetVLogLevel helper function is provided to do limited dynamic control over
// V-logging by appending to `--vmodule`. Because these go at the beginning of // V-logging by appending to `--vmodule`. Because these go at the beginning of
// the list, they take priority over any globs previously added. // the list, they take priority over any globs previously added.
// //
// Resetting --vmodule will override all previous modifications to `--vmodule`, // Resetting --vmodule will override all previous modifications to `--vmodule`,
// including via SetVLOGLevel. // including via SetVLogLevel.
#ifndef ABSL_LOG_ABSL_VLOG_IS_ON_H_ #ifndef ABSL_LOG_ABSL_VLOG_IS_ON_H_
#define ABSL_LOG_ABSL_VLOG_IS_ON_H_ #define ABSL_LOG_ABSL_VLOG_IS_ON_H_
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
// Each ABSL_VLOG_IS_ON call site gets its own VLogSite that registers with the // Each ABSL_VLOG_IS_ON call site gets its own VLogSite that registers with the
// global linked list of sites to asynchronously update its verbosity level on // global linked list of sites to asynchronously update its verbosity level on
// changes to --v or --vmodule. The verbosity can also be set by manually // changes to --v or --vmodule. The verbosity can also be set by manually
// calling SetVLOGLevel. // calling SetVLogLevel.
// //
// ABSL_VLOG_IS_ON is not async signal safe, but it is guaranteed not to // ABSL_VLOG_IS_ON is not async signal safe, but it is guaranteed not to
// allocate new memory. // allocate new memory.
......
...@@ -46,12 +46,12 @@ ...@@ -46,12 +46,12 @@
// Files which do not match any pattern in `--vmodule` use the value of `--v` as // Files which do not match any pattern in `--vmodule` use the value of `--v` as
// their effective verbosity level. The default is 0. // their effective verbosity level. The default is 0.
// //
// SetVLOGLevel helper function is provided to do limited dynamic control over // SetVLogLevel helper function is provided to do limited dynamic control over
// V-logging by appending to `--vmodule`. Because these go at the beginning of // V-logging by appending to `--vmodule`. Because these go at the beginning of
// the list, they take priority over any globs previously added. // the list, they take priority over any globs previously added.
// //
// Resetting --vmodule will override all previous modifications to `--vmodule`, // Resetting --vmodule will override all previous modifications to `--vmodule`,
// including via SetVLOGLevel. // including via SetVLogLevel.
#ifndef ABSL_LOG_VLOG_IS_ON_H_ #ifndef ABSL_LOG_VLOG_IS_ON_H_
#define ABSL_LOG_VLOG_IS_ON_H_ #define ABSL_LOG_VLOG_IS_ON_H_
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
// Each VLOG_IS_ON call site gets its own VLogSite that registers with the // Each VLOG_IS_ON call site gets its own VLogSite that registers with the
// global linked list of sites to asynchronously update its verbosity level on // global linked list of sites to asynchronously update its verbosity level on
// changes to --v or --vmodule. The verbosity can also be set by manually // changes to --v or --vmodule. The verbosity can also be set by manually
// calling SetVLOGLevel. // calling SetVLogLevel.
// //
// VLOG_IS_ON is not async signal safe, but it is guaranteed not to allocate // VLOG_IS_ON is not async signal safe, but it is guaranteed not to allocate
// new memory. // new memory.
......
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