mirror of
https://github.com/gabime/spdlog.git
synced 2026-04-10 11:34:29 +08:00
24 lines
367 B
C
24 lines
367 B
C
|
|
//
|
||
|
|
// Copyright(c) 2019 Gabi Melman.
|
||
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
||
|
|
//
|
||
|
|
|
||
|
|
// core types, forward declarations and defines used by spdlog
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace spdlog
|
||
|
|
{
|
||
|
|
namespace lite
|
||
|
|
{
|
||
|
|
enum class level{
|
||
|
|
trace,
|
||
|
|
debug,
|
||
|
|
info,
|
||
|
|
warning,
|
||
|
|
error,
|
||
|
|
critical,
|
||
|
|
off
|
||
|
|
|
||
|
|
};
|
||
|
|
}}
|