luks2: Add debug message to align with luks and geli modules

Signed-off-by: Glenn Washburn <development@efficientek.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
Glenn Washburn 2021-12-09 11:14:50 -06:00 committed by Daniel Kiper
parent d17eddab81
commit 74101d6c99

View File

@ -370,7 +370,10 @@ luks2_scan (grub_disk_t disk, const char *check_uuid, int check_boot)
uuid[j] = '\0';
if (check_uuid && grub_strcasecmp (check_uuid, uuid) != 0)
return NULL;
{
grub_dprintf ("luks2", "%s != %s\n", uuid, check_uuid);
return NULL;
}
cryptodisk = grub_zalloc (sizeof (*cryptodisk));
if (!cryptodisk)