mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
21 lines
318 B
C++
21 lines
318 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
|
|
#include "fsutils.h"
|
|
|
|
enum class Video2xLogLevel {
|
|
Unknown,
|
|
Trace,
|
|
Debug,
|
|
Info,
|
|
Warning,
|
|
Error,
|
|
Critical,
|
|
Off
|
|
};
|
|
|
|
void set_log_level(Video2xLogLevel log_level);
|
|
|
|
std::optional<Video2xLogLevel> find_log_level_by_name(const StringType &log_level_name);
|