Files
FlaxEngine/Source/Engine/Debug/Exception.cpp
2025-05-28 04:05:12 +02:00

12 lines
214 B
C++

// Copyright (c) Wojciech Figat. All rights reserved.
#include "Exception.h"
Log::Exception::~Exception()
{
#if LOG_ENABLE
// Always write exception to the log
Logger::Write(_level, ToString());
#endif
}