mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 19:39:18 +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;
|
||||
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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user