Navigation
API > API/Runtime > API/Runtime/TraceLog
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UE_FChannel * UE::Trace::FindChannel
(
const TCHAR* ChannelName |
Attempts to find the corresponding channel object given a channel name. | Trace/Trace.h | |
UE_FChannel * UE::Trace::FindChannel
(
FChannelId ChannelId |
Attempts to find the corresponding channel object given a channel id. | Trace/Trace.h |
UE::Trace::FindChannel(const TCHAR *)
Description
Attempts to find the corresponding channel object given a channel name.
| Name | UE::Trace::FindChannel |
| Type | function |
| Header File | /Engine/Source/Runtime/TraceLog/Public/Trace/Trace.h |
| Include Path | #include "Trace/Trace.h" |
namespace UE
{
namespace Trace
{
UE_FChannel * UE::Trace::FindChannel
(
const TCHAR * ChannelName
)
}
}
Pointer to channel object, or null if no channel matching the name have been registered
Parameters
| Name | Remarks |
|---|---|
| ChannelName | Name to search for |
UE::Trace::FindChannel(FChannelId)
Description
Attempts to find the corresponding channel object given a channel id.
| Name | UE::Trace::FindChannel |
| Type | function |
| Header File | /Engine/Source/Runtime/TraceLog/Public/Trace/Trace.h |
| Include Path | #include "Trace/Trace.h" |
namespace UE
{
namespace Trace
{
UE_FChannel * UE::Trace::FindChannel
(
FChannelId ChannelId
)
}
}
Pointer to channel object, or null if no channel with matching id have been registered
Parameters
| Name | Remarks |
|---|---|
| ChannelId | Id to search for |