ORE Studio 0.0.4
Loading...
Searching...
No Matches
severity_level.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * Copyright (C) 2024 Marco Craveiro <marco.craveiro@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 */
20#ifndef ORES_UTILITY_LOG_SEVERITY_LEVEL_HPP
21#define ORES_UTILITY_LOG_SEVERITY_LEVEL_HPP
22
23#include <string>
24#include <ostream>
25#include <stdexcept>
26
27namespace ores::utility::log {
28
36 trace,
37 debug,
38 info,
39 warn,
40 error
41};
42
48severity_level to_severity_level(const std::string& s);
49
55template<typename CharT, typename TraitsT>
56inline std::basic_ostream<CharT, TraitsT>&
57operator<<(std::basic_ostream<CharT, TraitsT>& stream, severity_level level) {
58 switch(level) {
59 case severity_level::trace: stream << "TRACE"; break;
60 case severity_level::debug: stream << "DEBUG"; break;
61 case severity_level::info: stream << "INFO"; break;
62 case severity_level::warn: stream << "WARN"; break;
63 case severity_level::error: stream << "ERROR"; break;
64 default:
65 throw std::invalid_argument("Invalid or unexpected severity level");
66 break;
67 }
68 return stream;
69}
70
71}
72
73#endif
Implements logging for ORE Studio.
Definition lifecycle_manager.hpp:30
severity_level
Logging severity.
Definition severity_level.hpp:35
severity_level to_severity_level(const std::string &s)
Converts the supplied string into the severity level, if valid.
Definition severity_level.cpp:26