aboutsummaryrefslogtreecommitdiffstats
path: root/src/boot.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2013-12-06 10:29:09 +0100
committerGerd Hoffmann <kraxel@redhat.com>2013-12-12 14:59:54 +0100
commitf5beab400d264b205961bcef54ef8afc656d5498 (patch)
treecbdf219bb31b46051693389da2bdbbc038cfea21 /src/boot.c
parentb3d4aae240325b01b69a9f88ee76b7abfd6a418c (diff)
downloadseabios-f5beab400d264b205961bcef54ef8afc656d5498.tar.gz
change boot order load log level
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>
Diffstat (limited to 'src/boot.c')
-rw-r--r--src/boot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.c b/src/boot.c
index 1c74d576..ad799f94 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -53,7 +53,7 @@ loadBootOrder(void)
return;
}
- dprintf(3, "boot order:\n");
+ dprintf(1, "boot order:\n");
i = 0;
do {
Bootorder[i] = f;
@@ -61,7 +61,7 @@ loadBootOrder(void)
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);
}