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

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