Files
FlaxEngine/Source/Engine/Debug/Exception.cpp
2024-02-26 19:00:48 +01:00

10 lines
202 B
C++

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