diff --git a/src/import/import-compress.c b/src/import/import-compress.c index eb44fc9d60..666a2c3aab 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; }