File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -364,13 +364,21 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
364
364
if 'Cluster =' in tv_casting_line :
365
365
cluster_value = extract_value_from_string (tv_casting_line )
366
366
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 ))
367
371
report_data_message .clear () # SHAO OG
368
372
# report_data_message = [] # SHAO
369
373
continue_parsing = False
370
374
371
375
elif 'Attribute =' in tv_casting_line :
372
376
attribute_value = extract_value_from_string (tv_casting_line )
373
377
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 ))
374
382
report_data_message .clear () # SHAO OG
375
383
# report_data_message = [] # SHAO
376
384
continue_parsing = False
You can’t perform that action at this time.
0 commit comments