diff options
author | Joe Gordon <jogo@cloudscaling.com> | 2011-11-09 13:01:35 -0800 |
---|---|---|
committer | Joe Gordon <jogo@cloudscaling.com> | 2011-11-09 19:57:44 -0800 |
commit | d7b9ee35569482be69918ba8ed448688568a7def (patch) | |
tree | 0195bd8bebfd826fa7ce398f3715c1681bf39e9f /nova/log.py | |
parent | bcb590cba55d3d7318f2870cddc1cf507652e2a2 (diff) | |
download | nova-d7b9ee35569482be69918ba8ed448688568a7def.tar.gz nova-d7b9ee35569482be69918ba8ed448688568a7def.tar.xz nova-d7b9ee35569482be69918ba8ed448688568a7def.zip |
More spelling fixes inside of nova
Change-Id: I79daf7519c99cc363ac7175c85912298f273da8a
Diffstat (limited to 'nova/log.py')
-rw-r--r-- | nova/log.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/log.py b/nova/log.py index 23b83ab5b..0f2153af4 100644 --- a/nova/log.py +++ b/nova/log.py @@ -131,7 +131,7 @@ def _get_log_file_path(binary=None): class NovaLogger(logging.Logger): """NovaLogger manages request context and formatting. - This becomes the class that is instanciated by logging.getLogger. + This becomes the class that is instantiated by logging.getLogger. """ @@ -323,7 +323,7 @@ logging.setLoggerClass(NovaLogger) def audit(msg, *args, **kwargs): - """Shortcut for logging to root log with sevrity 'AUDIT'.""" + """Shortcut for logging to root log with severity 'AUDIT'.""" logging.root.log(AUDIT, msg, *args, **kwargs) |