diff --git a/doc/glog.html b/doc/glog.html index c681609..8d36abc 100644 --- a/doc/glog.html +++ b/doc/glog.html @@ -46,7 +46,7 @@ You can log a message by simply streaming things to LOG(<a particular severity level>), e.g.
- #include <google/logging.h>
+ #include <glog/logging.h>
int main(int argc, char* argv[]) {
// Initialize Google's logging library.
@@ -65,7 +65,7 @@ verbose logging levels, and more. This document describes the
functionality supported by glog. Please note that this document
doesn't describe all features in this library, but the most useful
ones. If you want to find less common features, please check
-header files under src/google directory.
+header files under src/glog directory.
Severity Level
@@ -431,12 +431,12 @@ of September 2008, glog supports stack tracing for x86 and x86_64).
Raw Logging
-The header file <google/raw_logging.h> can be
+
The header file <glog/raw_logging.h> can be
used for thread-safe logging, which does not allocate any memory or
acquire any locks. Therefore, the macros defined in this
header file can be used by low-level memory allocation and
synchronization code.
-Please check src/google/raw_logging.h.in for detail.
+Please check src/glog/raw_logging.h.in for detail.
Google Style perror()
@@ -478,7 +478,7 @@ the GOOGLE_STRIP_LOG macro:
#define GOOGLE_STRIP_LOG 1 // this must go before the #include!
- #include <google/logging.h>
+ #include <glog/logging.h>
The compiler will remove the log messages whose severities are less