From 1b1997f37047b7bddba5236cfb10682b5b5db9a7 Mon Sep 17 00:00:00 2001 From: joost Date: Mon, 9 Jun 2014 12:36:51 +0000 Subject: [PATCH] FpDebugger (pure): Changed notification-level for errors during reading memory from dllInfo to dllDebug. It is quite normal that a debugger tries to read memory from invalid addresses. git-svn-id: trunk@45428 - --- components/fpdebug/fpdbgwinclasses.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/fpdebug/fpdbgwinclasses.pas b/components/fpdebug/fpdbgwinclasses.pas index 225a9bb9f4..d243e6dbae 100644 --- a/components/fpdebug/fpdbgwinclasses.pas +++ b/components/fpdebug/fpdbgwinclasses.pas @@ -155,7 +155,7 @@ end; procedure TDbgWinProcess.LogLastError; begin - log('FpDbg-ERROR: %s', [GetLastErrorText], dllInfo); + log('FpDbg-ERROR: %s', [GetLastErrorText], dllDebug); end; function QueryFullProcessImageName(hProcess:HANDLE; dwFlags: DWord; lpExeName:LPTSTR; var lpdwSize:DWORD):BOOL; stdcall; external 'kernel32' name 'QueryFullProcessImageNameA';