Log panel |
Top Previous Next |
User interface > Log panel
The Log panel displays logging messages and errors.
The kind of a message is marked by the colored boxes, which are displayed to the left of the node’s labels:
The picture above is a typical example: The first line occurs, because no definitions are set in the options. The red box in front of the filename in the second line means, that there were errors when the file was processed. The cause of the error is marked by the innermost error SysUtils: unexpected token. This error is propagated to it's parent nodes.
When SysUtils.pas is opened and the translation is started, it stops at
function AdjustLineBreaks(const S: string; Style: TTextLineBreakStyle = ): string;
This is a wrong result of the preprocessor. You can reload the original SysUtils.pas and find the position of TTextLineBreakStyle:
function AdjustLineBreaks(const S: string; Style: TTextLineBreakStyle = {$IFDEF LINUX} tlbsLF {$ENDIF} {$IFDEF MSWINDOWS} tlbsCRLF {$ENDIF}): string;
Because neither LINUX nor MSWINDOWS had been defined, after preprocessing there is no value assigned to TTextLineBreakStyle.
--
In the next image you can see an example of the Log panel after use of the file manager, The results of all files are listed in the tree:
|
This page belongs to the DelphiXE2Cpp11 Documentation |
DelphiXE2Cpp11 home Content |