Skip to content

Commit

Permalink
Wrap strings for output
Browse files Browse the repository at this point in the history
  • Loading branch information
Cawllec committed Jul 12, 2023
1 parent 1bdd783 commit bf40ec4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ FString UMainWidgetBase::LoadMazeRunnerUrl()
if (FJsonSerializer::Deserialize(JsonReader, JsonParsed))
{
const FString& MazeAddress = JsonParsed->GetStringField("maze_address");
UE_LOG(LogTestFixture, Display, TEXT("LoadMazeRunnerUrl: Loaded %s"), MazeAddress);
UE_LOG(LogTestFixture, Display, TEXT("LoadMazeRunnerUrl: Loaded %s"), TEXT(MazeAddress));
return MazeAddress;
}
else
{
// Fail in some way, this fills in for now
UE_LOG(LogTestFixture, Error, TEXT("LoadMazeRunnerUrl: Couldn't load maze_url, got %s"), RawConfig);
UE_LOG(LogTestFixture, Error, TEXT("LoadMazeRunnerUrl: Couldn't load maze_url, got %s"), TEXT(RawConfig));
return "";
}

Expand Down

0 comments on commit bf40ec4

Please sign in to comment.