summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2009-11-26 16:17:47 +0100
committerAles Kozumplik <akozumpl@redhat.com>2009-12-03 10:08:25 +0100
commit7e3fe161c4b600b10abe6796be5b81db9682a953 (patch)
treeefc98e769456f4a7c36e56e01e2cd01e8b15100a /storage/formats/fs.py
parent5ed47c665d1e916e7e3f7c98def3b59d9879f098 (diff)
downloadanaconda-7e3fe161c4b600b10abe6796be5b81db9682a953.tar.gz
anaconda-7e3fe161c4b600b10abe6796be5b81db9682a953.tar.xz
anaconda-7e3fe161c4b600b10abe6796be5b81db9682a953.zip
Whenever storage code tries to log a method call, do so into the 'tmp/storage.log' file. (a part of #524980)
Previously, the method call was logged into 'tmp/anaconda.log' which made the file harder to do anything useful with.
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 7778ba501..2ca436a70 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -37,9 +37,7 @@ from . import DeviceFormat, register_device_format
import iutil
from flags import flags
from parted import fileSystemType
-
-# is this nasty?
-log_method_call = iutil.log_method_call
+from ..storage_log import log_method_call
import logging
log = logging.getLogger("storage")