From 2633ed01caa93a7bf909fc2c6ee4af1ff6fb48d4 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 13 Aug 2025 15:26:35 +0900 Subject: [PATCH] import: add a debugging log of importing blob This should be helpful for debugging issue #38524. --- src/import/import-compress.c | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.47.3