Skip to content

Commit

Permalink
Merge pull request #201 from NASA-AMMOS/issue-200
Browse files Browse the repository at this point in the history
Issue #200 - Properly decode received log messages in GUI plugin
  • Loading branch information
MJJoyce authored Mar 10, 2021
2 parents 7c8be23 + aed0b81 commit 2c4a13f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ait/gui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ def process_telem_msg(self, msg):
Sessions.addTelemetry(msg[0], msg[1])

def process_log_msg(self, msg):
msg = msg.decode()
parsed = log.parseSyslog(msg)
Sessions.addMessage(parsed)

Expand Down

0 comments on commit 2c4a13f

Please sign in to comment.