glog icon indicating copy to clipboard operation
glog copied to clipboard

C++ implementation of the Google logging module

Results 86 glog issues
Sort by recently updated
recently updated
newest added

Version: v0.6.0 (should be reproducible on master) Platform: macOS 12.6 Compiler: AppleClang 14.0.0 When `WITH_THREADS` options is set to OFF, linking glog will pop an linking error which says `undef:...

I am able set FLAGS_stderrthreshold in code (while `logtostderr` and `alsologtostderr` are left as default) and see desired behavior. i.e. all available logs go to file and anything at or...

I am considering to use glog instead a lot of custom code, but I cannot se from the docs how to achieve the following: * user shall select to either...

PR welcome

- Add a new installation step in README file, explaining how to use Conan to install glog.

See table below: | Method | DLOG | LOG | |------------------|------|-----| | LOG() | x | x | | LOG_IF() | x | x | | LOG_EVERY_N() | x |...

Currently the comment states the following: ```cpp // NOTE: To change the log level for VLOG(_IS_ON) sites // that have already executed after/during InitGoogleLogging, // one needs to supply the...

PR welcome

Dear Sirs, I replaced `VLOG(1)` with `LOG(INFO)` in my service for uniformity after which i was confused why the performance became worse . (Average latency increased 2ms and cpu usage...

This pr implements #809 Add two flags max_logfile_num and log_rolling_policy, support rolling log file by day or by hour, and use max_logfile_num to control the max history log file num...

User in Gentoo reported that `symbolize_unittest:TestWithReturnAddress()` fails on ARM. Original report: https://bugs.gentoo.org/863599 GLog 0.6.0 Output of `ctest`: ``` Test project /var/tmp/portage/dev-cpp/glog-0.6.0/work/glog-0.6.0_build-.arm Start 1: logging_custom_prefix 1/17 Test #1: logging_custom_prefix ............ Passed...

This has come up a few times in the past, but figured I'd re-raise it after the transition from google code to github: I'm seeing a case in my application...

PR welcome