ADD: Write process ID to doublecmd.err

This commit is contained in:
Alexander Koblov 2016-10-21 19:14:34 +00:00
commit 2e72326f6d

View file

@ -86,9 +86,10 @@ begin
WriteLn(f, '| DC v', dcVersion, ' Rev. ', dcRevision,
' -- ', TargetCPU + '-' + TargetOS + '-' + TargetWS);
if WSVersion <> EmptyStr then
WriteLn(f, '| ', OSVersion, ' -- ', WSVersion)
Write(f, '| ', OSVersion, ' -- ', WSVersion)
else
WriteLn(f, '| ', OSVersion);
Write(f, '| ', OSVersion);
WriteLn(f, ' | PID ', GetProcessID);
if ExceptionText = EmptyStr then
begin