Functions and new Config

This commit is contained in:
Anonymous275
2020-04-09 21:32:32 +03:00
parent 3c244c7e7f
commit 640a9c2e54
7 changed files with 49 additions and 49 deletions

View File

@@ -1,6 +1,6 @@
//
// Created by jojos38 on 28.01.2020.
//
///
/// Created by jojos38 on 28/01/2020
///
#include <fstream>
@@ -32,7 +32,7 @@ void setLoggerLevel(char level_string[]) {
stringstream getDate() {
// current date/time based on current system
time_t now = time(0);
time_t now = time(nullptr);
tm* ltm = localtime(&now);
int month = 1 + ltm->tm_mon;