DynuIPRefresher/inc/Logger.h
2020-04-30 12:16:29 +02:00

23 lines
457 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(const std::string &message, int level);
static const int Debug;
static const int Message;
static const int Warning;
static const int Error;
};