Skip to content
/ glog Public
forked from google/glog

C++ implementation of the Google logging module

License

Notifications You must be signed in to change notification settings

huihut/glog

 
 

Repository files navigation

Build Status Grunt status

This repository contains a C++ implementation of the Google logging module. Documentation for the implementation is in doc/.

See INSTALL for (generic) installation instructions for C++: basically

./autogen.sh && ./configure && make && make install

Build

  1. Build VS project with CMake
    • Check BUILD_SHARED_LIBS
    • Uncheck WITH_GFLASS
    • CMAKE_INSTALL_PREFIX fill in the install path
    • Configure
    • Generate
  2. Compile and install using VS
    • Debug: Generate INSTALL project
    • Release: Generate INSTALL project
Some dependent libraries that glog projects may need
kernel32.lib
user32.lib
gdi32.lib
winspool.lib
shell32.lib
ole32.lib
oleaut32.lib
uuid.lib
comdlg32.lib
advapi32.lib

Usage

  1. To add glog's DLL header to your include path
  2. To add glog's DLL import library to your project
  3. To add GLOG_NO_ABBREVIATED_SEVERITIES to Preprocessor Definitions
  4. Additional Dependencies add
    • Debug:glogd.lib
    • Release:glog.lib
  5. To copy the DLL in a post-build event
    • Debug:xcopy /y /d "..\path_to_install\bin\glogd.dll" "$(OutDir)"
    • Release:xcopy /y /d "..\path_to_install\bin\glog.dll" "$(OutDir)"

Example

#include <glog/logging.h>
int main()
{
    FLAGS_log_dir = "/home/$USER";              // Make sure the folder exists
    google::InitGoogleLogging("");
    google::SetLogDestination(google::GLOG_INFO, "/home/$USER/INFO"); // Make sure the folder exists
    google::SetStderrLogging(google::GLOG_INFO);
    google::SetLogFilenameExtension("log_");
    FLAGS_colorlogtostderr = true;              // Set log color
    FLAGS_logbufsecs = 0;                       // Set log output speed(s)
    FLAGS_max_log_size = 1024;                  // Set max log file size
    FLAGS_stop_logging_if_full_disk = true;     // If disk is full

    LOG(INFO) << "[" << "fileName" << " " << "functionName" << "] " << "logContent";
    LOG(WARNING) << "[" << "fileName" << " " << "functionName" << "] " << "logContent";
    LOG(ERROR) << "[" << "fileName" << " " << "functionName" << "] " << "logContent";

    google::ShutdownGoogleLogging();
    return 0;
}

About

C++ implementation of the Google logging module

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 77.6%
  • CMake 6.0%
  • M4 5.6%
  • C 4.0%
  • Shell 3.5%
  • Makefile 2.4%
  • Python 0.9%