How can I print an onscreen bool value?

I used like this:

bool MyBoolValue = true;
UE_LOG(MyGame, Log, TEXT("Bool value is: %s"), MyBoolValue? "true" : "false" );

and in Log i got this:

Bool value is: ??

How to solve this problem?