|
| FOutputDeviceFile (const TCHAR *InFilename=nullptr, bool bDisableBackup=false, bool bAppendIfExists=false, bool bCreateWriterLazily=true, TFunction< void(const TCHAR *)> FileOpenedCallback=TFunction< void(const TCHAR *)>()) |
|
| ~FOutputDeviceFile () |
|
void | SetFilename (const TCHAR *InFilename) |
|
void | TearDown () override |
|
void | Flush () override |
|
virtual void | Serialize (const TCHAR *Data, ELogVerbosity::Type Verbosity, const class FName &Category, const double Time) override |
|
virtual void | Serialize (const TCHAR *Data, ELogVerbosity::Type Verbosity, const class FName &Category) override |
|
virtual bool | CanBeUsedOnAnyThread () const override |
|
virtual bool | CanBeUsedOnPanicThread () const override |
|
void | IncludeCategory (const class FName &InCategoryName) |
|
const TCHAR * | GetFilename () const |
|
bool | IsOpened () const |
|
| FOutputDevice () |
|
| FOutputDevice (FOutputDevice &&)=default |
|
| FOutputDevice (const FOutputDevice &)=default |
|
FOutputDevice & | operator= (FOutputDevice &&)=default |
|
FOutputDevice & | operator= (const FOutputDevice &)=default |
|
virtual | ~FOutputDevice ()=default |
|
virtual void | Serialize (const TCHAR *V, ELogVerbosity::Type Verbosity, const FName &Category)=0 |
|
virtual void | Serialize (const TCHAR *V, ELogVerbosity::Type Verbosity, const FName &Category, const double Time) |
|
virtual void | SerializeRecord (const UE::FLogRecord &Record) |
|
void | SetSuppressEventTag (bool bInSuppressEventTag) |
|
FORCEINLINE bool | GetSuppressEventTag () const |
|
void | SetAutoEmitLineTerminator (bool bInAutoEmitLineTerminator) |
|
FORCEINLINE bool | GetAutoEmitLineTerminator () const |
|
virtual void | Dump (class FArchive &Ar) |
|
virtual bool | IsMemoryOnly () const |
|
virtual bool | CanBeUsedOnMultipleThreads () const |
|
void | Log (const TCHAR *S) |
|
void | Log (ELogVerbosity::Type Verbosity, const TCHAR *S) |
|
void | Log (const FName &Category, ELogVerbosity::Type Verbosity, const TCHAR *Str) |
|
void | Log (const FString &S) |
|
void | Log (const FText &S) |
|
void | Log (ELogVerbosity::Type Verbosity, const FString &S) |
|
void | Log (const FName &Category, ELogVerbosity::Type Verbosity, const FString &S) |
|
template<typename FmtType > |
void | Logf (const FmtType &Fmt) |
|
template<typename FmtType , typename... Types> |
FORCEINLINE void | Logf (const FmtType &Fmt, Types... Args) |
|
template<typename FmtType , typename... Types> |
FORCEINLINE void | Logf (ELogVerbosity::Type Verbosity, const FmtType &Fmt, Types... Args) |
|
template<typename FmtType , typename... Types> |
FORCEINLINE void | CategorizedLogf (const FName &Category, ELogVerbosity::Type Verbosity, const FmtType &Fmt, Types... Args) |
|
File output device (Note: Only works if ALLOW_LOG_FILE && !NO_LOGGING is true, otherwise Serialize does nothing).
Definition at line 113 of file OutputDeviceFile.h.