feat(Core/Logging): add support fmt::format logging (#6893)

This commit is contained in:
Kargatum
2021-08-01 04:54:55 +07:00
committed by GitHub
parent 87b2cd1299
commit dc1945196a
7 changed files with 90 additions and 23 deletions

View File

@@ -6,13 +6,11 @@
#define AZEROTHCORE_BANNER_H
#include "Define.h"
#include <string_view>
namespace Acore
namespace Acore::Banner
{
namespace Banner
{
void Show(char const* applicationName, void(*log)(char const* text), void(*logExtraInfo)());
}
AC_COMMON_API void Show(std::string_view applicationName, void(*log)(std::string_view text), void(*logExtraInfo)());
}
#endif // AZEROTHCORE_BANNER_H