The log classes functionality from the context menu should seperate it's output with comma.
Currently:
B_Heli_Light_01_armed_F
B_Heli_Attack_01_F
B_Heli_Transport_01_F
B_Heli_Transport_01_camo_F
B_Heli_Transport_03_unarmed_F
How it should look:
B_Heli_Light_01_armed_F,
B_Heli_Attack_01_F,
B_Heli_Transport_01_F,
B_Heli_Transport_01_camo_F,
B_Heli_Transport_03_unarmed_F
You are probably asking youself now, why that is important. Simple answer is, it's needed when one wants to quickly fill in a editArray control. EditArray expects the input to be seperated by commas to be able to properly format it to a valid array with strings inside e.g Additionally, the current output cannot be used anyway and needs to be alterated first by a script or manually.
"B_Heli_Light_01_armed_F",
"B_Heli_Attack_01_F",
"B_Heli_Transport_01_F",
"B_Heli_Transport_01_camo_F",
"B_Heli_Transport_03_unarmed_F"