Is this about "debugln" does not log correctly, or about something gets logged, that you did not want to be logged?

I think the question is what is calling debugln.
- If your code does, then it should log.
- If it is in the IDE (but you wouldn't run that on wince) then that is correct to.
- If something else calls debugln, then that probably needs to be stopped.

On 24/05/2013 19:04, Zaher Dirkey wrote:
Hi, Would you please stop generate a debug file for wince

lclproc.pas line 1695

procedure DebugLn(const s: string);
begin
  {$ifdef WinCE}
  if DebugNestAtBOL and (s <> '') then
DbgAppendToFile(ExtractFilePath(ParamStr(0)) + Str_LCL_Debug_File, DebugNestPrefix+s)
  else
    DbgAppendToFile(ExtractFilePath(ParamStr(0)) + Str_LCL_Debug_File, s);
  {$else}
  // First of all verify if a widgetset has override DebugLn
  if DebugLnProc <> nil then
  begin
    DebugLnProc(s);
    Exit;
  end;

--
I am using last revision of Lazarus, FPC 2.6 on Windows XP SP3

Best Regards
Zaher Dirkey


--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to