aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-02-24 09:28:59 -0500
committerJunio C Hamano <gitster@pobox.com>2011-03-08 12:12:04 -0800
commit39bc5e4680a1ed7192968fbe9f5784ad56ecbd36 (patch)
treeca97ba49a31a39d59a5d61bf4cfcf07904317255 /cache.h
parent06796607ef557e8913f1797cca3c98ce4844c36c (diff)
downloadgit-39bc5e4680a1ed7192968fbe9f5784ad56ecbd36.tar.gz
git-39bc5e4680a1ed7192968fbe9f5784ad56ecbd36.tar.xz
trace: factor out "do we want to trace" logic
As we add more tracing areas, this will avoid repeated code. Technically, trace_printf already checks this and will avoid printing if the trace key is not set. However, callers may want to find out early whether or not tracing is enabled so they can avoid doing work in the common non-trace case. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 2ab1bf938..211d7bb26 100644
--- a/cache.h
+++ b/cache.h
@@ -1071,6 +1071,7 @@ extern void trace_vprintf(const char *key, const char *format, va_list ap);
__attribute__((format (printf, 2, 3)))
extern void trace_argv_printf(const char **argv, const char *format, ...);
extern void trace_repo_setup(const char *prefix);
+extern int trace_want(const char *key);
/* convert.c */
/* returns 1 if *dst was used */