DynuIPRefresher/inc/Logger.h
lukas-heiligenbrunner 73b6754806 created logging class
2019-10-26 14:41:43 +02:00

23 lines
450 B
C++

//
// Created by lukas on 26.10.19.
//
#pragma once
#include <string>
class Logger {
public:
static void debug(std::string message);
static void message(std::string message);
static void warning(std::string message);
static void error(std::string message);
static void log(std::string message, int level);
static const int Debug;
static const int Message;
static const int Warning;
static const int Error;
};