로그메시지를 list로 만들기

uipath에서 로그메시지로 가져온 텍스트들을 list로 만들려면 어떻게 해야 하나요?

Hi @sight_river

Hope i understand the question correctly,

If it’s a list (of string) then we can use this expression in log message,

lstString - your variable name (list (of string))

In log message,

String.join(environment.newline,lstString.toarray)

Thanks