summaryrefslogtreecommitdiff
path: root/datastore/store/channel.py
diff options
context:
space:
mode:
Diffstat (limited to 'datastore/store/channel.py')
-rw-r--r--datastore/store/channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/datastore/store/channel.py b/datastore/store/channel.py
index 2a5d5f4..1e083b5 100644
--- a/datastore/store/channel.py
+++ b/datastore/store/channel.py
@@ -7,7 +7,7 @@ class PrinterChannel(IChannel):
def __init__(self,name):
self.name = name
def add(self,timestamp,data,controller):
- print "{0}: {1},{2}".format(self.name, timestamp, data)
+ print "{0}: timestamp={1} value={2}".format(self.name, timestamp, data)
class SimpleMemoryChannel(IChannel):
def __init__(self):