use RAII for log file open/close

This commit is contained in:
Lion Kortlepel 2021-01-12 10:55:02 +01:00
parent cd19cd343a
commit b62676daf4

View File

@ -94,10 +94,8 @@ void DebugPrintTIDInternal(const std::string& func, bool overwrite) {
}
void addToLog(const std::string& Line) {
std::ofstream LFS;
LFS.open(("Server.log"), std::ios_base::app);
std::ofstream LFS("Server.log", std::ios_base::app);
LFS << Line.c_str();
LFS.close();
}
void info(const std::string& toPrint) {
std::scoped_lock Guard(LogLock);