From fecdb287524c485d49fac0b5e46d0c341af17206 Mon Sep 17 00:00:00 2001 From: Hugo Stephens Date: Fri, 9 Mar 2018 10:06:42 +0000 Subject: [PATCH] added logging messages --- robots/little_john/telemetry/code/monitor/graph_plotter_rewrite.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/robots/little_john/telemetry/code/monitor/graph_plotter_rewrite.py b/robots/little_john/telemetry/code/monitor/graph_plotter_rewrite.py index 35d2f07..652bb28 100755 --- a/robots/little_john/telemetry/code/monitor/graph_plotter_rewrite.py +++ b/robots/little_john/telemetry/code/monitor/graph_plotter_rewrite.py @@ -35,6 +35,7 @@ if platform.system()=='Windows': os='Windows' else: os='Other' +logging.info('OS = ' + os) class Series: def __init__(self, points=100, title="Series title", xname="x-axis name", yname="y-axis name"): @@ -157,7 +158,7 @@ class Plot(pyglet.window.Window): tag.draw() testseries = Series() - +logging.info("Series created") plots = [] plots.append(Plot(testseries)) -- libgit2 0.21.2