Fix log file name format mm-dd
This commit is contained in:
parent
d12ef77ba5
commit
993869bbc3
1
example/2023-05-21.log
Normal file
1
example/2023-05-21.log
Normal file
@ -0,0 +1 @@
|
|||||||
|
23:08:58 [EVENT] Start loging
|
@ -1 +1,2 @@
|
|||||||
11:00:58 [EVENT] Start loging
|
11:00:58 [EVENT] Start loging
|
||||||
|
13:02:17 [EVENT] Start loging
|
||||||
|
@ -82,7 +82,11 @@ void log::setPath() {
|
|||||||
if (dir[dir.length()-1] != '/') {
|
if (dir[dir.length()-1] != '/') {
|
||||||
dir.push_back('/');
|
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) {
|
void log::setPrefix(string &logline) {
|
||||||
|
@ -3,10 +3,11 @@
|
|||||||
#include "../lib/log.hpp"
|
#include "../lib/log.hpp"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
log mylog("../example", false);
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
log mylog("../example", false);
|
// log mylog("../example", false);
|
||||||
|
|
||||||
mylog.put("[EVENT] Start loging");
|
mylog.put("[EVENT] Start loging");
|
||||||
|
|
||||||
|
BIN
test/test.o
BIN
test/test.o
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user