summaryrefslogtreecommitdiffstats
path: root/loader2/driverdisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'loader2/driverdisk.c')
-rw-r--r--loader2/driverdisk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loader2/driverdisk.c b/loader2/driverdisk.c
index 2bd9e03d7..99c681350 100644
--- a/loader2/driverdisk.c
+++ b/loader2/driverdisk.c
@@ -67,7 +67,7 @@ static int verifyDriverDisk(char *mntpt, int flags) {
/* check for both versions */
sprintf(file, "%s/rhdd", mntpt);
if (access(file, R_OK)) {
- logMessage(WARNING, "not a new format driver disk, checking for old");
+ logMessage(DEBUGLVL, "not a new format driver disk, checking for old");
sprintf(file, "%s/rhdd-6.1", mntpt);
if (access(file, R_OK)) {
logMessage(ERROR, "can't find either driver disk identifier, bad "
@@ -208,7 +208,7 @@ int getRemovableDevices(char *** devNames) {
numDevices = i;
for (i = 0; devices[i]; i++) {
- logMessage(INFO, "devices[%d] is %s", i, devices[i]->device);
+ logMessage(DEBUGLVL, "devices[%d] is %s", i, devices[i]->device);
}
*devNames = malloc((numDevices + 1) * sizeof(*devNames));
@@ -357,7 +357,7 @@ int loadDriverFromMedia(int class, moduleList modLoaded,
case DEV_LOADFILE: {
if(ddfile == NULL) {
- logMessage(INFO, "trying to load dd from NULL");
+ logMessage(DEBUGLVL, "trying to load dd from NULL");
stage = DEV_CHOOSEFILE;
break;
}