fixed: Image did not use 'savelog' when creating logs

before commit 4832c7db4b the logs were lost, but after 4832c7db4b
the logs were printed when winix shuts down

in 4832c7db4b at the end of BaseThread::StartRoutine()
has been added a call to save_log()
This commit is contained in:
Tomasz Sowa 2021-02-17 16:17:36 +01:00
parent 4832c7db4b
commit a4de11d69c
1 changed files with 2 additions and 0 deletions

View File

@ -581,6 +581,8 @@ void Image::CreateImage()
<< ", 'convert' process returned: " << res << logend;
}
}
log << logsave;
}