MCPcopy Create free account
hub / github.com/git/git / print_verbose

Function print_verbose

fetch-pack.c:77–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75static unsigned int allow_unadvertised_object_request;
76
77__attribute__((format (printf, 2, 3)))
78static inline void print_verbose(const struct fetch_pack_args *args,
79 const char *fmt, ...)
80{
81 va_list params;
82
83 if (!args->verbose)
84 return;
85
86 va_start(params, fmt);
87 vfprintf(stderr, fmt, params);
88 va_end(params);
89 fputc('\n', stderr);
90}
91
92struct alternate_object_cache {
93 struct object **items;

Callers 5

send_filterFunction · 0.85
find_commonFunction · 0.85
everything_localFunction · 0.85
do_fetch_packFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected