mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
|
|
};
|
|
}} |