From: Yu Watanabe Date: Wed, 13 Aug 2025 06:26:35 +0000 (+0900) Subject: import: add a debugging log of importing blob X-Git-Tag: v258-rc3~45^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2633ed01caa93a7bf909fc2c6ee4af1ff6fb48d4;p=thirdparty%2Fsystemd.git import: add a debugging log of importing blob This should be helpful for debugging issue #38524. --- diff --git a/src/import/import-compress.c b/src/import/import-compress.c index eb44fc9d604..666a2c3aaba 100644 --- a/src/import/import-compress.c +++ b/src/import/import-compress.c @@ -4,6 +4,7 @@ #include #include "import-compress.h" +#include "log.h" #include "string-table.h" void import_compress_free(ImportCompress *c) { @@ -104,6 +105,7 @@ int import_uncompress_detect(ImportCompress *c, const void *data, size_t size) { c->encoding = false; + log_debug("Detected compression type: %s", import_compress_type_to_string(c->type)); return 1; }