chiark / gitweb /
volume_id: move some debug to info level
[elogind.git] / extras / volume_id / lib / squashfs.c
index bdb1f16628b7345e8fa8d2109181ae9fdaeaf472..fdba64edbce025b76c9e577794e9c2bcbe63335a 100644 (file)
@@ -36,7 +36,7 @@ int volume_id_probe_squashfs(struct volume_id *id, uint64_t off)
 {
        struct squashfs_super *sqs;
 
-       dbg("probing at offset 0x%llx", (unsigned long long) off);
+       info("probing at offset 0x%llx", (unsigned long long) off);
 
        sqs = (struct squashfs_super *) volume_id_get_buffer(id, off + 0x200, 0x200);
        if (sqs == NULL)