Browse Source

Fixed logging

Kirk Trombley 6 years ago
parent
commit
edffacb021
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/plugins/teamspeak.py

+ 1 - 1
src/plugins/teamspeak.py

@@ -25,7 +25,7 @@ class teamspeak(RollbotPlugin):
                 tn.write(b"quit\n")
                 response = tn.read_until(b"virtualserver_status").decode("ascii")
         except Exception as e:
-            self.logger.error("Teamspeak failure.", e)
+            self.logger.error("Teamspeak failure - " + str(e))
             return RollbotResponse(
                 message,
                 failure=RollbotFailure.SERVICE_DOWN,