You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a bug at line 76 in mlog/file_logger.hpp. m_stream.open() will only succeed if the stream is already closed. Opening an already open stream will always fail. So I suggest to add m_stream.close(); between line 75 and 76.
There's a bug at line 76 in mlog/file_logger.hpp. m_stream.open() will only succeed if the stream is already closed. Opening an already open stream will always fail. So I suggest to add m_stream.close(); between line 75 and 76.