Fix log
This commit is contained in:
parent
763f0731bd
commit
1a834b98a6
|
@ -26,7 +26,7 @@ void USensorDescription::Load(const FIniFile &Config, const FString &Section)
|
||||||
|
|
||||||
void USensorDescription::Log() const
|
void USensorDescription::Log() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogCarla, Log, TEXT("[%s/%s]"), TEXT("CARLA/Sensor"), Name);
|
UE_LOG(LogCarla, Log, TEXT("[%s/%s]"), TEXT("CARLA/Sensor"), *Name.ToString());
|
||||||
UE_LOG(LogCarla, Log, TEXT("Type = %s"), *Type);
|
UE_LOG(LogCarla, Log, TEXT("Type = %s"), *Type);
|
||||||
UE_LOG(LogCarla, Log, TEXT("Position = (%s)"), *Position.ToString());
|
UE_LOG(LogCarla, Log, TEXT("Position = (%s)"), *Position.ToString());
|
||||||
UE_LOG(LogCarla, Log, TEXT("Rotation = (%s)"), *Rotation.ToString());
|
UE_LOG(LogCarla, Log, TEXT("Rotation = (%s)"), *Rotation.ToString());
|
||||||
|
|
Loading…
Reference in New Issue