aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQi Wang <interwq@gwu.edu>2023-09-27 09:55:12 -0700
committerQi Wang <interwq@gmail.com>2023-10-04 11:49:10 -0700
commit005f20aa7fdef1be6f9fe46e4f2e7b88177a9f21 (patch)
treed4b4a4c18bfb1e52f1f5d98b7c9113026c9042f1
parent7a9e4c9073c9a06fa43130ecfd4790740327d415 (diff)
downloadjemalloc_new-005f20aa7fdef1be6f9fe46e4f2e7b88177a9f21.tar.gz
Fix comments about malloc_conf to enable logging.
-rw-r--r--include/jemalloc/internal/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/log.h b/include/jemalloc/internal/log.h
index 921985c8..7b074abd 100644
--- a/include/jemalloc/internal/log.h
+++ b/include/jemalloc/internal/log.h
@@ -27,9 +27,9 @@
* log("extent.a", "log msg for extent.a"); // 5
* log("extent.b", "log msg for extent.b"); // 6
*
- * And your malloc_conf option is "log=arena.a|extent", then lines 2, 4, 5, and
+ * And your malloc_conf option is "log:arena.a|extent", then lines 2, 4, 5, and
* 6 will print at runtime. You can enable logging from all log vars by
- * writing "log=.".
+ * writing "log:.".
*
* None of this should be regarded as a stable API for right now. It's intended
* as a debugging interface, to let us keep around some of our printf-debugging