Skip to content

Commit

Permalink
Set default mFileOutput to "default.log"
Browse files Browse the repository at this point in the history
  • Loading branch information
xorz57 authored Jan 29, 2024
1 parent 179bc9e commit c6e5ac3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/Logger/Logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ class Logger {
}
}

Level mLevel = Level::Info;
bool mFileOutputEnabled = false;
std::string mFileOutput;
Level mLevel{Level::Info};
bool mFileOutputEnabled{false};
std::string mFileOutput{"default.log"};
std::mutex mMutex;
};

0 comments on commit c6e5ac3

Please sign in to comment.