mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 07:27:22 -06:00
Defer closing logger instance
So that logger can still be used in shutdown stage.
This commit is contained in:
@@ -850,12 +850,13 @@ void Application::cleanup()
|
|||||||
Net::ProxyConfigurationManager::freeInstance();
|
Net::ProxyConfigurationManager::freeInstance();
|
||||||
Preferences::freeInstance();
|
Preferences::freeInstance();
|
||||||
SettingsStorage::freeInstance();
|
SettingsStorage::freeInstance();
|
||||||
delete m_fileLogger;
|
|
||||||
Logger::freeInstance();
|
|
||||||
IconProvider::freeInstance();
|
IconProvider::freeInstance();
|
||||||
SearchPluginManager::freeInstance();
|
SearchPluginManager::freeInstance();
|
||||||
Utils::Fs::removeDirRecursively(Utils::Fs::tempPath());
|
Utils::Fs::removeDirRecursively(Utils::Fs::tempPath());
|
||||||
|
|
||||||
|
Logger::freeInstance();
|
||||||
|
delete m_fileLogger;
|
||||||
|
|
||||||
#ifndef DISABLE_GUI
|
#ifndef DISABLE_GUI
|
||||||
if (m_window)
|
if (m_window)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user