mirror of
https://github.com/paweld/simple-logger
synced 2025-04-05 01:27:48 +02:00
fixes related to waiting for the log to be written to a file
tested on Windows
This commit is contained in:
parent
8b98d1a9ca
commit
74ddb0e858
@ -422,7 +422,7 @@ end;
|
||||
procedure TSaveLogThread.Execute;
|
||||
var
|
||||
sleepms: Integer;
|
||||
cs: Int64;
|
||||
cs: QWord;
|
||||
|
||||
function GetSleepMs: Integer; inline;
|
||||
begin
|
||||
@ -433,7 +433,7 @@ var
|
||||
end;
|
||||
|
||||
begin
|
||||
sleepms := GetSleepMs;
|
||||
sleepms := 0;
|
||||
cs := GetTickCount64;
|
||||
while not Terminated do
|
||||
begin
|
||||
@ -497,6 +497,8 @@ end;
|
||||
|
||||
destructor TLogger.Destroy;
|
||||
begin
|
||||
while FLogList.Count > 0 do
|
||||
sleep(1);
|
||||
if FSaveThread <> nil then
|
||||
begin
|
||||
FSaveThread.Terminate;
|
||||
|
Loading…
Reference in New Issue
Block a user