]> git.ipfire.org Git - pakfire.git/commitdiff
ELF: Don't log when finding a source file
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 4 Jan 2025 13:28:30 +0000 (13:28 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 4 Jan 2025 13:28:30 +0000 (13:28 +0000)
This is a huge amount of output for C++ projects where there are so many
of those files.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/pakfire/elf.c

index dc6a6df34a4c87c08b31e0057ff8dc580ef81e3d..68d6a8c432ed41a4910965b56d2ab727bf7e4734 100644 (file)
@@ -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)