diff options
author | Abseil Team <absl-team@google.com> | 2024-03-18 07:16:40 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-03-18 07:17:38 -0700 |
commit | 4539c540fe48d6a7f0cc4ed3ace2971c9038cc75 (patch) | |
tree | 5e72f12d1028fa7f7d962bc4a495c3c77c41f528 | |
parent | 5839a14828f31f1c2876003677e0ce8e28544b1f (diff) | |
download | abseil-4539c540fe48d6a7f0cc4ed3ace2971c9038cc75.tar.gz abseil-4539c540fe48d6a7f0cc4ed3ace2971c9038cc75.tar.bz2 abseil-4539c540fe48d6a7f0cc4ed3ace2971c9038cc75.zip |
[log] Correct SetVLOGLevel to SetVLogLevel in comments
PiperOrigin-RevId: 616818246
Change-Id: I1ee813dd1b4da2d25d6b1b9cdba9e8f70d6a6d90
-rw-r--r-- | absl/log/absl_vlog_is_on.h | 6 | ||||
-rw-r--r-- | absl/log/vlog_is_on.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/absl/log/absl_vlog_is_on.h b/absl/log/absl_vlog_is_on.h index 29096b48..6bf6c413 100644 --- a/absl/log/absl_vlog_is_on.h +++ b/absl/log/absl_vlog_is_on.h @@ -46,12 +46,12 @@ // Files which do not match any pattern in `--vmodule` use the value of `--v` as // 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 // the list, they take priority over any globs previously added. // // Resetting --vmodule will override all previous modifications to `--vmodule`, -// including via SetVLOGLevel. +// including via SetVLogLevel. #ifndef ABSL_LOG_ABSL_VLOG_IS_ON_H_ #define ABSL_LOG_ABSL_VLOG_IS_ON_H_ @@ -77,7 +77,7 @@ // 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 // 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 // allocate new memory. diff --git a/absl/log/vlog_is_on.h b/absl/log/vlog_is_on.h index 78986513..f7539df4 100644 --- a/absl/log/vlog_is_on.h +++ b/absl/log/vlog_is_on.h @@ -46,12 +46,12 @@ // Files which do not match any pattern in `--vmodule` use the value of `--v` as // 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 // the list, they take priority over any globs previously added. // // Resetting --vmodule will override all previous modifications to `--vmodule`, -// including via SetVLOGLevel. +// including via SetVLogLevel. #ifndef ABSL_LOG_VLOG_IS_ON_H_ #define ABSL_LOG_VLOG_IS_ON_H_ @@ -63,7 +63,7 @@ // 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 // 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 // new memory. |