IDE: improved debugging

git-svn-id: trunk@15926 -
This commit is contained in:
mattias 2008-07-31 10:31:05 +00:00
parent dbbebe8dd7
commit af088605bf

View File

@ -184,7 +184,10 @@ var
UpdatePoFile(FileList, OutputFilename); UpdatePoFile(FileList, OutputFilename);
Result := true; Result := true;
except except
Result := false; on E: Exception do begin
DebugLn(['ConvertRSTFiles.UpdateList OutputFilename="',OutputFilename,'" ',E.Message]);
Result := false;
end;
end; end;
end; end;