Ensure network log files are closed when shutting down engine

Previously, the network log files were not explicitly closed unless the `dbg_lognetwork` command is used again manually.
This commit is contained in:
Robert Müller 2023-12-07 18:53:53 +01:00
parent 10b486a6b0
commit 187120dd31

View file

@ -71,6 +71,7 @@ public:
~CEngine() override
{
m_JobPool.Destroy();
CNetBase::CloseLog();
}
void Init() override