NazaraEngine/include/Nazara/Core/Log.inl

18 lines
483 B
C++

// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Core/Format.hpp>
#include <Nazara/Core/Debug.hpp>
namespace Nz
{
template<typename... Args>
void Log::Write(FormatString<Args...> fmt, Args&&... args)
{
return Write(Format(fmt, std::forward<Args>(args)...));
}
}
#include <Nazara/Core/DebugOff.hpp>