how to log in ue4 code example
Example 1: ue4 log float
UE_LOG(LogTemp, Log, TEXT("Value = %f"), FloatVar);
Example 2: debug log ue4
UE_LOG(LogTemp, Warning, TEXT("Text, %d %f %s"), intVar, floatVar, *fstringVar );
UE_LOG(LogTemp, Log, TEXT("Value = %f"), FloatVar);
UE_LOG(LogTemp, Warning, TEXT("Text, %d %f %s"), intVar, floatVar, *fstringVar );