FpDebug: The reason why a run failed is not debug information, but real information.

git-svn-id: trunk@48927 -
This commit is contained in:
joost 2015-05-05 07:57:01 +00:00
parent 28708cc964
commit 28faa771f6

View File

@ -531,19 +531,19 @@ begin
result := False; result := False;
if assigned(FMainProcess) then if assigned(FMainProcess) then
begin begin
Log('The debuggee is already running'); Log('The debuggee is already running', dllInfo);
Exit; Exit;
end; end;
if FExecutableFilename = '' then if FExecutableFilename = '' then
begin begin
Log('No filename given to execute.'); Log('No filename given to execute.', dllInfo);
Exit; Exit;
end; end;
if not FileExists(FExecutableFilename) then if not FileExists(FExecutableFilename) then
begin begin
Log('File %s does not exist.',[FExecutableFilename]); Log('File %s does not exist.',[FExecutableFilename], dllInfo);
Exit; Exit;
end; end;