includeLineNumbers

When you generate Java™ code, the includeLineNumbers build descriptor option specifies whether or not Java runtime error messages include the line number of the error. This helps you locate problems in the code more easily. If you set this option to YES, the program might run slower due to the increased information which is being added.

Values

NO (the default value)
When includeLineNumbers is set to this value, Java runtime error messages look like the following example:
EGL0049E Overflow during assignment of 12345 to x.
EGL0002I The error occurred in MyProgram, function main.
YES
When includeLineNumbers is set to this value, Java runtime error messages look like the following example:
EGL0049E Overflow during assignment of 12345 to x.
EGL0003I The error occurred in MyProgram, function main,
         at line 24 of file 'com.fred.MyProgram.egl'.

Feedback