Joedb 10.4.1
The Journal-Only Embedded Database
Loading...
Searching...
No Matches
Logger.h
Go to the documentation of this file.
1#ifndef joedb_Logger_declared
2#define joedb_Logger_declared
3
4#include "external/cstring_view.hpp"
5
6namespace joedb
7{
8 /// @ingroup error
9 class Logger
10 {
11 public:
12 virtual void log(beman::cstring_view message) noexcept {}
13 virtual ~Logger() = default;
15 };
16}
17
18#endif
virtual ~Logger()=default
static Logger dummy_logger
Definition Logger.h:14
virtual void log(beman::cstring_view message) noexcept
Definition Logger.h:12