updated to the new pikotools api (changes in Log)

This commit is contained in:
2021-06-24 21:17:03 +02:00
parent bf1f0954b9
commit b6340a30d2
10 changed files with 38 additions and 28 deletions

View File

@@ -56,13 +56,13 @@ BaseThread::~BaseThread()
void BaseThread::set_main_log_buffer(pt::WTextStream * log_buffer)
{
main_log.SetLogBuffer(log_buffer);
main_log.set_log_buffer(log_buffer);
}
void BaseThread::set_main_file_log(pt::FileLog * file_log)
{
main_log.SetFileLog(file_log);
main_log.set_file_log(file_log);
}