Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
utils.hpp
Go to the documentation of this file.
1#ifndef IV_SRC_LOGS_UTILS_HPP_
2#define IV_SRC_LOGS_UTILS_HPP_
3
4#include "logs/enums.hpp"
5
6#include <string>
7
8namespace iv::logs
9{
10
12{
13 switch (level)
14 {
16 return "diamar/question64x64";
17
19 return "diamar/warning64x64";
20
22 return "diamar/error64x64";
23
25 return "diamar/block";
26 }
27
28 return "";
29}
30
31}// namespace iv::logs
32
33#endif//IV_SRC_LOGS_UTILS_HPP_
Definition DownloadLogger.cpp:19
eSystemFailureLogLevel
Definition enums.hpp:23
std::string systemFailureLevelIcon(const iv::logs::eSystemFailureLogLevel level)
Definition utils.hpp:11