Skip to content

Commit 3912f15

Browse files
Adding more debug logs.
1 parent 0581722 commit 3912f15

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/tests/run_tv_casting_test.py

+8
Original file line numberDiff line numberDiff line change
@@ -364,13 +364,21 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
364364
if 'Cluster =' in tv_casting_line:
365365
cluster_value = extract_value_from_string(tv_casting_line)
366366
if cluster_value != CLUSTER_MEDIA_PLAYBACK:
367+
print('SHAO we entered into the mismatch cluster ID block!!!!')
368+
print('cluster_value: ', cluster_value)
369+
print('len(cluster_value): ', len(cluster_value))
370+
print('type(cluster_value): ', type(cluster_value))
367371
report_data_message.clear() # SHAO OG
368372
# report_data_message = [] # SHAO
369373
continue_parsing = False
370374

371375
elif 'Attribute =' in tv_casting_line:
372376
attribute_value = extract_value_from_string(tv_casting_line)
373377
if attribute_value != ATTRIBUTE_CURRENT_PLAYBACK_STATE:
378+
print('SHAO we entered into the mismatch attribute ID block!!!!')
379+
print('attr_value: ', attribute_value)
380+
print('len(attr_value): ', len(attribute_value))
381+
print('type(attr_value): ', type(attribute_value))
374382
report_data_message.clear() # SHAO OG
375383
# report_data_message = [] # SHAO
376384
continue_parsing = False

0 commit comments

Comments
 (0)