summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-04-06 12:58:54 -0500
committerDavid Lehman <dlehman@redhat.com>2009-04-07 11:56:06 -0500
commitc3d17090ab7d98f41bd1c84165b48c319396f51d (patch)
tree2066639cb7502ca1c6eb480046bc72bd37e411cf /isys
parent04327c57e378d6a6bb5a4903fe92614747323e0d (diff)
downloadanaconda-c3d17090ab7d98f41bd1c84165b48c319396f51d.tar.gz
anaconda-c3d17090ab7d98f41bd1c84165b48c319396f51d.tar.xz
anaconda-c3d17090ab7d98f41bd1c84165b48c319396f51d.zip
Include filesystem type in mount log message.
Diffstat (limited to 'isys')
-rwxr-xr-xisys/isys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index 0963037b9..d5ae22325 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -168,7 +168,7 @@ def mount(device, location, fstype = "ext2", readOnly = False,
flags = ",".join(opts)
- log.debug("isys.py:mount()- going to mount %s on %s with options %s" %(device, location, flags))
+ log.debug("isys.py:mount()- going to mount %s on %s as %s with options %s" %(device, location, fstype, flags))
rc = _isys.mount(fstype, device, location, flags)
if not rc: