DynuIPRefresher/inc/Logger.h

23 lines
451 B
C
Raw Normal View History

//
2019-10-26 12:41:43 +00:00
// Created by lukas on 26.10.19.
//
2019-10-26 12:41:43 +00:00
#pragma once
#include <string>
2019-10-26 12:41:43 +00:00
class Logger {
public:
2019-10-26 12:41:43 +00:00
static void debug(std::string message);
static void message(std::string message);
static void warning(std::string message);
static void error(std::string message);
2019-10-27 13:14:03 +00:00
static void log(std::string &message, int level);
2019-10-26 12:41:43 +00:00
static const int Debug;
static const int Message;
static const int Warning;
static const int Error;
};