aboutsummaryrefslogtreecommitdiffstats
path: root/torouterui/sysstatus.py
diff options
context:
space:
mode:
authorficus <ficus@robocracy.org>2012-11-24 02:46:55 +0100
committerficus <ficus@robocracy.org>2012-11-24 02:47:58 +0100
commitf31914f3e22b4982fcccd1634a8bb49dca0c155c (patch)
tree79f7f612bc78dabe9fb2b7c34d74612de5e8f78c /torouterui/sysstatus.py
parentc139513eeb2f6bf159b58770f26ec75d9dc021bf (diff)
downloadtui-f31914f3e22b4982fcccd1634a8bb49dca0c155c.tar.gz
tui-f31914f3e22b4982fcccd1634a8bb49dca0c155c.zip
fix logs 500 error (due to string encoding)
Diffstat (limited to 'torouterui/sysstatus.py')
-rw-r--r--torouterui/sysstatus.py25
1 files changed, 6 insertions, 19 deletions
diff --git a/torouterui/sysstatus.py b/torouterui/sysstatus.py
index efab9de..cc3af87 100644
--- a/torouterui/sysstatus.py
+++ b/torouterui/sysstatus.py
@@ -4,6 +4,7 @@ in system log files.
"""
import os
+import codecs
from util import *
@@ -58,30 +59,16 @@ def get_resources_status():
def get_dmesg():
try:
- return cli_read('dmesg')
+ return cli_read('dmesg').decode('utf-8')
except IOError:
- return "Couldn't read dmesg"
+ return None
-def get_authlog():
+def get_log(fname):
try:
- with open('/var/log/auth.log') as f:
+ with codecs.open(fname, 'r', 'utf-8') as f:
return ''.join(f.readlines())
except IOError:
- return "Couldn't read /var/log/auth.log"
-
-def get_syslog():
- try:
- with open('/var/log/syslog') as f:
- return ''.join(f.readlines())
- except IOError:
- return "Couldn't read /var/log/syslog"
-
-def get_torlog():
- try:
- with open('/var/log/tor/notices.log') as f:
- return ''.join(f.readlines())
- except IOError:
- return "Couldn't read /var/log/tor/notices.log"
+ return None
def get_process_list():
"""