From: Michael Tremer Date: Thu, 29 Apr 2021 11:42:55 +0000 (+0000) Subject: archive+snapshot: Be less verbose when extracting X-Git-Tag: 0.9.28~1285^2~191 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19073f7d00556abf5fce0073744b50870f2d58bb;p=pakfire.git archive+snapshot: Be less verbose when extracting Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/archive.c b/src/libpakfire/archive.c index 70fe71e69..bc43df607 100644 --- a/src/libpakfire/archive.c +++ b/src/libpakfire/archive.c @@ -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); diff --git a/src/libpakfire/snapshot.c b/src/libpakfire/snapshot.c index e362e87a3..5207df832 100644 --- a/src/libpakfire/snapshot.c +++ b/src/libpakfire/snapshot.c @@ -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)