aboutsummaryrefslogtreecommitdiff
path: root/include/odhtdb/Log.hpp
blob: d09c2a2a2770f80c5000be954574d6cc1159fc8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

namespace odhtdb
{
    class Log
    {
    public:
        static void debug(const char *fmt, ...);
        static void warn(const char *fmt, ...);
        static void error(const char *fmt, ...);
    };
}