Switchboard Extension SDK
Loading...
Searching...
No Matches
LogLevel.hpp
1
//
2
// LogLevel.hpp
3
// SwitchboardSDK
4
//
5
// Created by Pesti József on 2022. 12. 19..
6
//
7
8
#pragma once
9
10
#include <string>
11
12
namespace
switchboard {
13
14
enum class
LogLevel :
int
{ None = 0, Error = 1, Warning = 2, Info = 3, Debug = 4, Trace = 5 };
15
23
LogLevel logLevelFromString(
const
std::string& stringValue);
24
32
std::string logLevelToString(LogLevel logLevel);
33
34
}
SwitchboardSDK
include
switchboard_core
LogLevel.hpp
Generated by
1.14.0