Fix log file name format mm-dd

This commit is contained in:
marcelb 2023-05-21 23:09:56 +02:00
parent d12ef77ba5
commit 993869bbc3
5 changed files with 10 additions and 3 deletions

1
example/2023-05-21.log Normal file
View File

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

View File

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

View File

@ -82,7 +82,11 @@ void log::setPath() {
if (dir[dir.length()-1] != '/') {
dir.push_back('/');
}
path = dir + to_string(moment->tm_year+1900) + '-' + to_string(moment->tm_mon+1) + '-' + to_string(moment->tm_mday) + ".log";
stringstream mon, _day;
mon << setw(2) << setfill('0') << moment->tm_mon+1;
_day << setw(2) << setfill('0') << moment->tm_mday;
path = dir + to_string(moment->tm_year+1900) + '-' + mon.str() + '-' + _day.str() + ".log";
}
void log::setPrefix(string &logline) {

View File

@ -3,12 +3,13 @@
#include "../lib/log.hpp"
using namespace std;
log mylog("../example", false);
int main() {
log mylog("../example", false);
// log mylog("../example", false);
mylog.put("[EVENT] Start loging");
return 0;
}
}

Binary file not shown.