Skip to content

Commit

Permalink
Added new debug macros to README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
4c3y committed Dec 21, 2023
1 parent c67ce50 commit b40459f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,8 @@ excessive logging.
DLOG(INFO) << "Found cookies";
DLOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
DLOG_EVERY_N(INFO, 10) << "Got the " << google::COUNTER << "th cookie";
DLOG_FIRST_N(INFO, 10) << "Got the " << google::COUNTER << "th cookie";
DLOG_EVERY_T(INFO, 0.01) << "Got a cookie";
``CHECK`` Macros
Expand Down

0 comments on commit b40459f

Please sign in to comment.