LiteSQL
include
litesql
logger.hpp
1
#ifndef LOGGER_HPP
2
#define LOGGER_HPP
3
4
#include "
litesql/except.hpp
"
5
6
namespace
litesql
7
{
8
class
Logger
{
9
public
:
10
static
void
report(
const
std::string& msg,
const
std::string& msg2);
11
static
void
report(
const
std::string& msg);
12
static
void
error(
const
std::string& msg,
const
std::string& msg2);
13
static
void
error(
const
std::string& msg2);
14
static
void
error(
const
Except
& ex);
15
static
void
verbose(
bool
verbose);
16
};
17
}
18
19
#endif // #ifndef LOGGER_HPP
litesql::Except
base class for exceptions
Definition:
except.hpp:18
except.hpp
litesql::Logger
Definition:
logger.hpp:8