mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 06:19:32 +02:00
FpDebug: The reason why a run failed is not debug information, but real information.
git-svn-id: trunk@48927 -
This commit is contained in:
parent
28708cc964
commit
28faa771f6
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user