]> git.ipfire.org Git - pakfire.git/commitdiff
archive+snapshot: Be less verbose when extracting
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 29 Apr 2021 11:42:55 +0000 (11:42 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 29 Apr 2021 11:42:55 +0000 (11:42 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/archive.c
src/libpakfire/snapshot.c

index 70fe71e69c6c02ed4af25705b46e2424700ff1da..bc43df60766a8a47c682994196f3132dcb212a1f 100644 (file)
@@ -879,8 +879,6 @@ static int pakfire_archive_extract_entry(PakfireArchive archive,
        // Fetch the paths
        const char* path = archive_entry_pathname(entry);
 
-       DEBUG(archive->pakfire, "Extracting /%s\n", path);
-
        // Prepend the prefix
        if (extractor->path && *extractor->path) {
                r = pakfire_path_join(buffer, extractor->path, path);
index e362e87a3e7fa01d5cb7e4ca2fa5e851a9a20fe5..5207df83206d24c5d4de88a544cb0b9c52912e40 100644 (file)
@@ -176,8 +176,6 @@ PAKFIRE_EXPORT int pakfire_snapshot_create(Pakfire pakfire, FILE* f) {
                        continue;
                }
 
-               DEBUG(pakfire, "Processing %s...\n", path);
-
                archive_read_disk_descend(reader);
 
                // Reset path to relative path in archive
@@ -292,8 +290,6 @@ static int pakfire_snapshot_extract(Pakfire pakfire, FILE* f) {
 
                const char* path = archive_entry_pathname(e);
 
-               DEBUG(pakfire, "Extracting %s...\n", path);
-
                // Update path
                r = pakfire_make_path(pakfire, buffer, path);
                if (r < 0)