diff options
author | Peter Jones <pjones@redhat.com> | 2008-10-23 11:45:11 -0400 |
---|---|---|
committer | Peter Jones <pjones@pjones2.localdomain> | 2008-10-23 11:46:27 -0400 |
commit | f2b48b8e998ecc44f6156c6f80f1a6ee60ccb273 (patch) | |
tree | 271c52eb0703902aed0019cdad7bbb4b932a6f3e /loader/cdinstall.c | |
parent | bcbd124790eaffa43d35c0809f97f098302d3d91 (diff) | |
download | anaconda-f2b48b8e998ecc44f6156c6f80f1a6ee60ccb273.tar.gz anaconda-f2b48b8e998ecc44f6156c6f80f1a6ee60ccb273.tar.xz anaconda-f2b48b8e998ecc44f6156c6f80f1a6ee60ccb273.zip |
Make cdrom drive door status messages be INFO not DEBUG.
These are acting up too much recently, so make it so we can see them
before stage2 is ready.
Diffstat (limited to 'loader/cdinstall.c')
-rw-r--r-- | loader/cdinstall.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/loader/cdinstall.c b/loader/cdinstall.c index f0028d3f5..0b03a6dfa 100644 --- a/loader/cdinstall.c +++ b/loader/cdinstall.c @@ -115,10 +115,9 @@ static int waitForCdromTrayClose(int fd) { if (prev == INT_MAX || prev != rc) { status = cdrom_drive_status(rc); if (status != NULL) { - logMessage(DEBUGLVL, "drive status is %s", status); + logMessage(INFO, "drive status is %s", status); } else { - logMessage(DEBUGLVL, "drive status is unknown status code %d", - rc); + logMessage(INFO, "drive status is unknown status code %d", rc); } } prev = rc; |