Compare commits

..

No commits in common. 'dev' and 'loglevel' have entirely different histories.

  1. 2
      .gitignore
  2. 1
      example/2023-05-21.log
  3. 3
      example/2023-07-27.log
  4. 5
      example/2023-5-20.log
  5. 2
      example/2023-5-21.log
  6. 2
      lib/log.hpp
  7. 34
      src/log.cpp
  8. 4
      test/test.cpp
  9. BIN
      test/test.o

2
.gitignore vendored

@ -1,3 +1,3 @@
.vscode
example
example/*
test/*.o

@ -0,0 +1 @@
23:08:58 [EVENT] Start loging

@ -0,0 +1,3 @@
18:29:30 [EVENT] Start loging
18:29:44 [EVENT] Start loging
18:29:47 [EVENT] Start loging

@ -0,0 +1,5 @@
[EVENT] Start loging
[EVENT] Start loging
10:58:12 [EVENT] Start loging
10:59:19 [EVENT] Start loging
11:00:17 [EVENT] Start loging

@ -0,0 +1,2 @@
11:00:58 [EVENT] Start loging
13:02:17 [EVENT] Start loging

@ -14,7 +14,6 @@
typedef unsigned int uint;
#endif
namespace marcelb {
namespace logging {
using namespace std;
@ -117,7 +116,6 @@ class log {
~log();
};
}
}
#endif

@ -1,9 +1,6 @@
#include "../lib/log.hpp"
namespace marcelb {
namespace logging {
log::log(string _dir, Level _loglevel, bool _isKeepOpen, bool _printInConsole) {
marcelb::log::log(string _dir, Level _loglevel, bool _isKeepOpen, bool _printInConsole) {
dir = _dir;
loglevel = _loglevel;
isKeepOpen = _isKeepOpen;
@ -25,28 +22,28 @@ log::log(string _dir, Level _loglevel, bool _isKeepOpen, bool _printInConsole) {
}
bool log::isdir() {
bool marcelb::log::isdir() {
struct stat sb;
return stat(dir.c_str(), &sb) == 0;
}
bool log::open() {
bool marcelb::log::open() {
logfile = ofstream (path, ios_base::app);
return logfile.is_open();
}
void log::loose() {
void marcelb::log::loose() {
logfile.close();
}
void log::setMoment() {
void marcelb::log::setMoment() {
time_t rawtime;
time (&rawtime);
moment = localtime (&rawtime);
}
void log::put(string logline, Level _level) {
void marcelb::log::put(string logline, Level _level) {
if (_level < loglevel) {
return;
}
@ -86,7 +83,7 @@ void log::put(string logline, Level _level) {
}
void log::setPath() {
void marcelb::log::setPath() {
if (dir[dir.length()-1] != '/') {
dir.push_back('/');
}
@ -97,7 +94,7 @@ void log::setPath() {
path = dir + to_string(moment->tm_year+1900) + '-' + mon.str() + '-' + _day.str() + ".log";
}
void log::setPrefix(string &logline, Level &_level) {
void marcelb::log::setPrefix(string &logline, Level &_level) {
stringstream hour, min, sec;
hour << setw(2) << setfill('0') << moment->tm_hour;
min << setw(2) << setfill('0') << moment->tm_min;
@ -128,31 +125,28 @@ void log::setPrefix(string &logline, Level &_level) {
logline = _logline + logline;
}
void log::debug(string logline) {
void marcelb::log::debug(string logline) {
put(logline, DEBUG);
}
void log::info(string logline) {
void marcelb::log::info(string logline) {
put(logline, INFO);
}
void log::warning(string logline) {
void marcelb::log::warning(string logline) {
put(logline, WARNING);
}
void log::error(string logline) {
void marcelb::log::error(string logline) {
put(logline, ERROR);
}
void log::fatal(string logline) {
void marcelb::log::fatal(string logline) {
put(logline, FATAL);
}
log::~log() {
marcelb::log::~log() {
loose();
}
}
}

@ -3,9 +3,9 @@
#include "../lib/log.hpp"
using namespace std;
using namespace marcelb::logging;
using namespace marcelb;
log mylog("../example", Level::INFO, false);
log mylog("../example", Level::FATAL, false);
int main() {
mylog.debug("Start debug loging");

Binary file not shown.
Loading…
Cancel
Save