MyGUI 3.4.3
MyGUI_LevelLogFilter.h
Go to the documentation of this file.
1/*
2 * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3 * Distributed under the MIT License
4 * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5 */
6
7#ifndef MYGUI_LEVEL_LOG_FILTER_H_
8#define MYGUI_LEVEL_LOG_FILTER_H_
9
10#include "MyGUI_Prerequest.h"
11#include "MyGUI_ILogFilter.h"
12
13namespace MyGUI
14{
15
17 {
18 public:
20
22 bool shouldLog(
23 std::string_view _section,
24 LogLevel _level,
25 const struct tm* _time,
26 std::string_view _message,
27 std::string_view _file,
28 int _line) override;
29
33 void setLoggingLevel(LogLevel _value);
38
39 private:
40 LogLevel mLevel;
41 };
42
43} // namespace MyGUI
44
45#endif // MYGUI_LEVEL_LOG_FILTER_H_
#define MYGUI_EXPORT
bool shouldLog(std::string_view _section, LogLevel _level, const struct tm *_time, std::string_view _message, std::string_view _file, int _line) override
void setLoggingLevel(LogLevel _value)