We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 896397b commit 1f21185Copy full SHA for 1f21185
examples/mixed/frame_sync.cpp
@@ -82,10 +82,10 @@ int main() {
82
83
if check_sync(frames, f.getTimestamp()): # Check if we have any synced frames
84
# Frames synced!
85
- node.warn(f"Synced frame!")
+ node.info(f"Synced frame!")
86
for name, list in frames.items():
87
syncedF = list.pop(0) # We have removed older (excess) frames, so at positions 0 in dict we have synced frames
88
- node.warn(f"{name}, ts: {str(syncedF.getTimestamp())}, seq {str(syncedF.getSequenceNum())}")
+ node.info(f"{name}, ts: {str(syncedF.getTimestamp())}, seq {str(syncedF.getSequenceNum())}")
89
node.io[name+'_out'].send(syncedF) # Send synced frames to the host
90
91
0 commit comments