mirror of
https://github.com/SantaSpeen/BeamMP-Server.git
synced 2025-08-18 05:35:36 +00:00
17 lines
408 B
C++
17 lines
408 B
C++
//
|
|
// Created by Anonymous275 on 4/2/2020.
|
|
//
|
|
|
|
#include <iostream>
|
|
#include <ctime>
|
|
#include <sstream>
|
|
#include <string.h>
|
|
using namespace std;
|
|
extern int loggerlevel;
|
|
stringstream getDate();
|
|
void setLoggerLevel(char level_string[]);
|
|
void info(const std::string& toPrint);
|
|
void warn(const std::string& toPrint);
|
|
void error(const std::string& toPrint);
|
|
void debug(const std::string& toPrint);
|