From 005f20aa7fdef1be6f9fe46e4f2e7b88177a9f21 Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Wed, 27 Sep 2023 09:55:12 -0700 Subject: [PATCH] Fix comments about malloc_conf to enable logging. --- include/jemalloc/internal/log.h | 4 ++-- 1 file 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