Lines Matching defs:LOG
17 * The log malloc_conf option is a '|'-delimited list of log_var name segments
19 * the delimiter (a "segment" is just a prefix in the log namespace). So, if
22 * log("arena", "log msg for arena"); // 1
23 * log("arena.a", "log msg for arena.a"); // 2
24 * log("arena.b", "log msg for arena.b"); // 3
25 * log("arena.a.a", "log msg for arena.a.a"); // 4
26 * log("extent.a", "log msg for extent.a"); // 5
27 * log("extent.b", "log msg for extent.b"); // 6
29 * And your malloc_conf option is "log=arena.a|extent", then lines 2, 4, 5, and
30 * 6 will print at runtime. You can enable logging from all log vars by
31 * writing "log=.".
106 /* Call as log("log.var.str", "format_string %d", arg_for_format_string); */
107 #define LOG(log_var_str, ...) \