main: change the name of the log file.

This commit is contained in:
Guillaume Jacquemin 2021-07-13 18:50:38 +02:00
parent 7531dc88ac
commit ff1782ca9d
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
int main(int argc, char** argv) {
#ifndef SAVETOOL_DEBUG_BUILD
std::ofstream output{"out.txt", std::ios::trunc|std::ios::out};
std::ofstream output{"SaveToolLog.txt", std::ios::trunc|std::ios::out};
Utility::Debug d{&output};
Utility::Warning w{&output};