MCPcopy Index your code
hub / github.com/git/git / loginfo

Function loginfo

daemon.c:131–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131__attribute__((format (printf, 1, 2)))
132static void loginfo(const char *err, ...)
133{
134 va_list params;
135 if (!verbose)
136 return;
137 va_start(params, err);
138 logreport(LOG_INFO, err, params);
139 va_end(params);
140}
141
142static void NORETURN daemon_die(const char *err, va_list params)
143{

Callers 7

path_okFunction · 0.85
run_serviceFunction · 0.85
parse_host_argFunction · 0.85
parse_extra_argsFunction · 0.85
executeFunction · 0.85
check_dead_childrenFunction · 0.85
serveFunction · 0.85

Calls 1

logreportFunction · 0.85

Tested by

no test coverage detected