From: Date: Fri, 10 Oct 2008 15:19:23 +0000 (+0000) Subject: Fix the include paths in the document: s/google/glog/. X-Git-Tag: submit/tizen/20180313.064233~231 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf6108bb8cf3c43da1db6d9089b60b36437ca28b;p=platform%2Fupstream%2Fglog.git Fix the include paths in the document: s/google/glog/. git-svn-id: https://google-glog.googlecode.com/svn/trunk@5 eb4d4688-79bd-11dd-afb4-1d65580434c0 --- 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