diff options
author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-02-23 15:16:56 -0800 |
---|---|---|
committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-02-23 15:16:56 -0800 |
commit | b7d89758af54b291492eecae74cee29461ca28b9 (patch) | |
tree | 2b9eacbc694b8e4831a9d6c9a18f2dc55fc9f133 /nova/log.py | |
parent | cd301d67506bcb6d67d921492435e9d7d56aafb1 (diff) | |
download | nova-b7d89758af54b291492eecae74cee29461ca28b9.tar.gz nova-b7d89758af54b291492eecae74cee29461ca28b9.tar.xz nova-b7d89758af54b291492eecae74cee29461ca28b9.zip |
remove processName from debug output since we aren't using multiprocessing and it doesn't exist in python 2.6.1
Diffstat (limited to 'nova/log.py')
-rw-r--r-- | nova/log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/log.py b/nova/log.py index 10c14d74b..7866c34f7 100644 --- a/nova/log.py +++ b/nova/log.py @@ -54,7 +54,7 @@ flags.DEFINE_string('logging_default_format_string', 'format string to use for log messages without context') flags.DEFINE_string('logging_debug_format_suffix', - 'from %(processName)s (pid=%(process)d) %(funcName)s' + 'from (pid=%(process)d) %(funcName)s' ' %(pathname)s:%(lineno)d', 'data to append to log format when level is DEBUG') |