Having loadBootOrder and find_prio print at different log levels (3 + 1)
doesn't make that much sense, to trouble-shoot bootorder issues it is
very useful to have both. Lets use loglevel 1.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
return;
}
- dprintf(3, "boot order:\n");
+ dprintf(1, "boot order:\n");
i = 0;
do {
Bootorder[i] = f;
if (f)
*(f++) = '\0';
nullTrailingSpace(Bootorder[i]);
- dprintf(3, "%d: %s\n", i+1, Bootorder[i]);
+ dprintf(1, "%d: %s\n", i+1, Bootorder[i]);
i++;
} while (f);
}