Fixed paths in src
<packages/fcl-extra/src/daemonapp.pp>
Procedure StartLog;
begin
{$if defined(win32) or defined(win64)}
Assign(FL,'c:\service.log');
{$else}
Assign(FL,'/tmp/service.log');
{$endif}
<packages/pastojs/src/pas2jslogger.pp>
procedure TPas2jsLogger.LogF(args: array of const);
begin
if LogFile=nil then
LogFile:=TStringList.Create;
LogFile.Add(TPas2jsLogger.Concatenate(args));
LogFile.SaveToFile('c:\tmp\libpas2jsparams.txt');
end;
Dir paths must be replaced to IncludeTrailingPathDelimiter(GetTempDir)
.