summaryrefslogtreecommitdiff
path: root/python/log.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-01-03 15:33:39 -0500
committerJordan Wiens <jordan@psifertex.com>2019-01-03 15:33:39 -0500
commit34b04f487e0dfcdc8766cb265e10dd3f58217f30 (patch)
tree6ccc49becfb5802bf982c9dc9978631283bc6c57 /python/log.py
parentac204fce33045803f27b438a2ffd3930d96fc52b (diff)
lots of spelling / typo fixes
Diffstat (limited to 'python/log.py')
-rw-r--r--python/log.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/log.py b/python/log.py
index 4997b222..ab763f44 100644
--- a/python/log.py
+++ b/python/log.py
@@ -60,7 +60,7 @@ def log(level, text):
def log_debug(text):
"""
- ``log_debug`` Logs debuging information messages to the console.
+ ``log_debug`` Logs debugging information messages to the console.
:param str text: message to print
:rtype: None
@@ -165,7 +165,7 @@ def log_to_stderr(min_level):
def log_to_file(min_level, path, append = False):
"""
- ``log_to_file`` redirects minimum log level to a file named ``path``, optionally appending rather than overwritting.
+ ``log_to_file`` redirects minimum log level to a file named ``path``, optionally appending rather than overwriting.
:param int min_level: minimum level to log to
:param str path: path to log to