Main: update formatting.
This commit is contained in:
parent
6130734764
commit
a5a8db289a
1 changed files with 3 additions and 3 deletions
|
@ -25,16 +25,16 @@
|
||||||
#include <winerror.h>
|
#include <winerror.h>
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char** argv) {
|
||||||
#ifndef SAVETOOL_DEBUG_BUILD
|
#ifndef SAVETOOL_DEBUG_BUILD
|
||||||
std::ofstream output{"SaveToolLog.txt", std::ios::trunc|std::ios::out};
|
std::ofstream output{"SaveToolLog.txt", std::ios::trunc|std::ios::out};
|
||||||
|
|
||||||
Utility::Debug d{&output};
|
Utility::Debug d{&output};
|
||||||
Utility::Warning w{&output};
|
Utility::Warning w{&output};
|
||||||
Utility::Error e{&output};
|
Utility::Error e{&output};
|
||||||
#else
|
#else
|
||||||
Utility::Warning w{Utility::Debug::defaultOutput()};
|
Utility::Warning w{Utility::Debug::defaultOutput()};
|
||||||
Utility::Error e{Utility::Debug::defaultOutput()};
|
Utility::Error e{Utility::Debug::defaultOutput()};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Utility::Debug{} << "===M.A.S.S. Builder Save Tool version " SAVETOOL_VERSION "===";
|
Utility::Debug{} << "===M.A.S.S. Builder Save Tool version " SAVETOOL_VERSION "===";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue