UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IrisLogUtils.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "HAL/Platform.h"
6#include "Containers/Set.h"
7
8class FName;
9
10namespace UE::Net
11{
12
18{
19public:
21 bool ShouldLog(uint32 Hash) const;
22
24 bool ShouldLog(const FName& Name) const;
25
26private:
27 mutable TSet<uint32> LoggedHashes;
28};
29
30}
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
uint32_t uint32
Definition binka_ue_file_header.h:6
Definition NameTypes.h:617
Definition IrisLogUtils.h:18
bool ShouldLog(uint32 Hash) const
Definition IrisLogUtils.cpp:10
Definition NetworkVersion.cpp:28