Skip to content
Snippets Groups Projects
Commit a4d03a3d authored by Patrick Godwin's avatar Patrick Godwin
Browse files

gstlal_feature_synchronizer: add latency information to logs upon pushing features downstream

parent d23579b3
No related branches found
No related tags found
No related merge requests found
Pipeline #30317 passed
......@@ -186,7 +186,7 @@ class StreamSynchronizer(object):
# push full feature vector to producer if buffer isn't empty
if self.feature_buffer:
timestamp, features = self.feature_buffer.pop()
logger.info('pushing features with timestamp %f downstream' % timestamp)
logger.info('pushing features with timestamp %f downstream, latency is %.3f' % (timestamp, utils.gps2latency(timestamp)))
feature_packet = {'timestamp': timestamp, 'features': features}
self.producer.produce(timestamp = timestamp, topic = self.producer_name, value = json.dumps(feature_packet))
self.producer.poll(0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment