Topic: *Build Status* listing - readability
Would it be possible for SF's *Build Status* listing to put in some kind of a delimeter between successive error and warning messages? I ask, because the listing's present form can be a little confusing. The problem is that each 'error' entry is followed immediately by a 'source/filehandler' reference, so it looks as if the two belong together. But they don't. The 'error' entry refers to the 'source/fileandler' reference several lines above.
ILLUSTRATION
(example listing)
Present listing
Compiling Source/FileHandler.for
Source/FileHandler.for:933.26:
IF(OP) CLOSE(LU)
1
Error: Syntax error in CLOSE statement at (1)
Source/FileHandler.for:942.21:
+ '*.rtf')
1
Error: Syntax error in CALL statement at (1)
Source/FileHandler.for:547.9:
IF(dlgopenfile (F%Path,
1
Error: IF clause at (1) requires a scalar LOGICAL expression
Preferred listing
Compiling Source/FileHandler.for
-------------------------------------------------------------------------------------------------
Source/FileHandler.for:933.26:
IF(OP) CLOSE(LU)
1
Error: Syntax error in CLOSE statement at (1)
-------------------------------------------------------------------------------------------------
Source/FileHandler.for:942.21:
+ '*.rtf')
1
Error: Syntax error in CALL statement at (1)
-------------------------------------------------------------------------------------------------
Source/FileHandler.for:547.9:
IF(dlgopenfile (F%Path,
1
Error: IF clause at (1) requires a scalar LOGICAL expression
-------------------------------------------------------------------------------------------------
---
John