Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Leinnan committed Sep 18, 2024
1 parent 77ea533 commit fdac929
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,7 @@ void FBeamContentIdCustomization::CustomizeHeader(TSharedRef<IPropertyHandle> St
TArray<FName> TypesToRemove;
TMap<FString,TArray<FString>> OutMappings;
Content->FindSubTypesOfContentType(BeamContentTypeFilterArray,OutMappings);
for(const auto Map : OutMappings)
{
for(const auto El: Map.Value)
{
UE_LOG(LogTemp, Warning, TEXT("Out mapping: %s - %s"), *Map.Key, *El);
}
}

for (const auto& Map : ContentTypeToIdsMap)
{
const auto ExampleContent = Map.Value[0].Get()->ToString();
Expand All @@ -58,7 +52,6 @@ void FBeamContentIdCustomization::CustomizeHeader(TSharedRef<IPropertyHandle> St
{
for(const auto El: TT.Value)
{
UE_LOG(LogTemp, Warning, TEXT("%s - %s type %s"), *El, *ExampleContent, *TypeId);
if (!OnlyExplicitTypes && TypeId.StartsWith(El))
{
GoodContent = true;
Expand Down

0 comments on commit fdac929

Please sign in to comment.