From b40459f7715ae4d983d9f9e6af4067cdc2cf0633 Mon Sep 17 00:00:00 2001 From: 4c3y <69460051+4c3y@users.noreply.github.com> Date: Thu, 21 Dec 2023 18:36:42 +0100 Subject: [PATCH] Added new debug macros to README.rst --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 37ad740ba..87f3da64f 100644 --- a/README.rst +++ b/README.rst @@ -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