mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-04-05 07:16:18 +00:00
17 lines
385 B
C++
17 lines
385 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(int level);
|
|
void info(const std::string& toPrint);
|
|
void warn(const std::string& toPrint);
|
|
void error(const std::string& toPrint);
|
|
void debug(const std::string& toPrint);
|