Skip to content
Snippets Groups Projects
Logger.h 374 B
#ifndef LOGGER_H
#define LOGGER_H

#include <iostream>
#include <string>
#include <fstream>
#include <stdio.h>

#include "MessageTypes.h"

#define LOGFILE "logs.txt"

using namespace std;

class Logger{
public:
	string filename;
	Logger();
	Logger(string fileName);
	int printTheLog(LogType type, string s);
private:
	int writeToFile(string messages);
};

#endif //LOGGER_H