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;
if assigned(FMainProcess) then
begin
Log('The debuggee is already running');
Log('The debuggee is already running', dllInfo);
Exit;
end;
if FExecutableFilename = '' then
begin
Log('No filename given to execute.');
Log('No filename given to execute.', dllInfo);
Exit;
end;
if not FileExists(FExecutableFilename) then
begin
Log('File %s does not exist.',[FExecutableFilename]);
Log('File %s does not exist.',[FExecutableFilename], dllInfo);
Exit;
end;