aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-07-15 10:33:48 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-07-15 10:33:55 +0200
commit767681c11ec6fecf9d35ba699db31ea2bdcd0702 (patch)
treee9a58166b2e4fb72f62d68f9b572e28e322189bb
parente172699e9a20737c4abb9bd96609f48e65415961 (diff)
downloadlibquotient-767681c11ec6fecf9d35ba699db31ea2bdcd0702.tar.gz
libquotient-767681c11ec6fecf9d35ba699db31ea2bdcd0702.zip
Bring back documentation on PROFILE_LOG_USECS
I was about to decommission it but got to use it myself. [skip ci]
-rw-r--r--CONTRIBUTING.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d63864d0..fb10c7da 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -334,7 +334,10 @@ you might want to setup a `QElapsedTimer` and drop the elapsed time into logs
under `PROFILER` logging category. See the existing code for examples -
`room.cpp` has quite a few. In order to reduce small timespan logging spam,
`PROFILER` log lines are usually guarded by a check that the timer counted big
-enough time (200 microseconds by default, 20 microseconds for tighter parts).
+enough time (200 microseconds by default, 20 microseconds for tighter parts);
+this threshold can be altered at compile-time by defining `PROFILER_LOG_USECS`
+preprocessor symbol (i.e. passing `-DPROFILE_LOG_USECS=<usecs>` to the compiler
+if you're on Linux/macOS).
### Generated C++ code for CS API
The code in `lib/csapi`, `lib/identity` and `lib/application-service`, although