From: Michael Tremer Date: Sat, 4 Jan 2025 13:28:30 +0000 (+0000) Subject: ELF: Don't log when finding a source file X-Git-Tag: 0.9.30~547 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8a23d4dd0be145e5dc58cfd9608f3facd291474;p=pakfire.git ELF: Don't log when finding a source file This is a huge amount of output for C++ projects where there are so many of those files. Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/elf.c b/src/pakfire/elf.c index dc6a6df34..68d6a8c43 100644 --- a/src/pakfire/elf.c +++ b/src/pakfire/elf.c @@ -1203,8 +1203,6 @@ int pakfire_elf_foreach_source_file(struct pakfire_elf* self, && pakfire_string_endswith(basename, ">")) continue; - DEBUG(self->ctx, "Found source file: %s\n", path); - // Call the callback r = callback(self->ctx, self, path, data); if (r)