How to Log separate words in same line?

GLog->Log(“Hello”);

GLog->Log(" ");

GLog->Log(“World”);

I need these words to be logged in 1 singe log line, very important by uing separate Log function calls.
How to do that?

PS: SetAutoEmitLineTerminator(false) NOT working.

I think i should use FString to write needed words, and then write that FSstring to log.