aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-11-04 20:09:03 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-11-04 20:09:03 +0900
commita81383549df4db8a487a847dca41900f3ab38c27 (patch)
tree203bed3ae007465efbdb77465a34c72521284c76
parent23ebed25b79f4b6edf630546d7d9d571398a1640 (diff)
downloadlibquotient-a81383549df4db8a487a847dca41900f3ab38c27.tar.gz
libquotient-a81383549df4db8a487a847dca41900f3ab38c27.zip
profilerMinNsecs(): Fix a misnomer - it's PROFILER_LOG_USECS now - and document it
-rw-r--r--CONTRIBUTING.md8
-rw-r--r--lib/logging.h8
2 files changed, 12 insertions, 4 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d50dc157..6ee39eec 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -237,6 +237,14 @@ We want the software to have decent performance for typical users. At the same t
Having said that, there's always a trade-off between various attributes; in particular, readability and maintainability of the code is more important than squeezing every bit out of that clumsy algorithm. Beware of premature optimization and have profiling data around before going into some hardcore optimization.
+Speaking of profiling logs (see README.md on how to turn them on) - in order
+to reduce small timespan logging spam, there's a default limit of at least
+200 microseconds to log most operations with the PROFILER
+(aka libqmatrixclient.profile.debug) logging category. You can override this
+limit by passing the new value (in microseconds) in PROFILER_LOG_USECS to
+the compiler. In the future, this parameter will be made changeable at runtime
+_if_ needed.
+
## How to check proposed changes before submitting them
Checking the code on at least one configuration is essential; if you only have
diff --git a/lib/logging.h b/lib/logging.h
index 6c93ca79..a3a65887 100644
--- a/lib/logging.h
+++ b/lib/logging.h
@@ -69,11 +69,11 @@ namespace QMatrixClient
inline qint64 profilerMinNsecs()
{
return
- #ifdef PROFILER_LOG_MIN_MS
- PROFILER_LOG_MIN_MS
- #else
+#ifdef PROFILER_LOG_USECS
+ PROFILER_LOG_USECS
+#else
200
- #endif
+#endif
* 1000;
}
}