Skip to content

Commit

Permalink
Comment out annoying bits that aren't building
Browse files Browse the repository at this point in the history
  • Loading branch information
Cawllec committed Jul 12, 2023
1 parent bf40ec4 commit 6c86e3b
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"), TEXT(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"), TEXT(RawConfig));
// UE_LOG(LogTestFixture, Error, TEXT("LoadMazeRunnerUrl: Couldn't load maze_url, got %s"), TEXT(RawConfig));
return "";
}

Expand Down

0 comments on commit 6c86e3b

Please sign in to comment.