12 lines
214 B
C++
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
|
|
}
|