Skip to content

Nick #14

Open
wants to merge 17 commits into
base: dev
Choose a base branch
from
51 changes: 0 additions & 51 deletions bfs/include/Logger.h

This file was deleted.

33 changes: 33 additions & 0 deletions bfs/include/Logger.hpp
@@ -0,0 +1,33 @@
#ifndef LOGGER_HPP
#define LOGGER_HPP

#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <time.h>
#include <chrono>
#include <ctime>
#include <windows.h>

using namespace std;

extern class Logger {
public:
Logger(int l_Level);
~Logger();
void log(const char* fmt, ...);
Logger* getLogger();
static string getPath();
private:
static Logger* logger;
int logging_Level;
string filename;
string filePath;
FILE* fp;

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Get rid of this space

};

//static Logger* logger = logger->getLogger(logger);
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Get rid of this comment

#endif
Binary file added bfs/scripts/buildbfs.pyc
Binary file not shown.