ldd200888 opened a new pull request #6:
URL: https://github.com/apache/logging-chainsaw/pull/6
When adding columnName, LINE is after MILLIS_DELTA:
```
columnNames.add(ChainsawConstants.CLASS_COL_NAME);
columnNames.add(ChainsawConstants.METHOD_COL_NAME);
columnNames.add(ChainsawConstants.FILE_COL_NAME);
columnNames.add(ChainsawConstants.MILLIS_DELTA_COL_NAME_LOWERCASE.toUpperCase());
//add uppercase col name
columnNames.add(ChainsawConstants.LINE_COL_NAME);
````
But, in indexes, LINE is before MILLIS_DELTA:
```
public static final int INDEX_METHOD_COL_NAME = 10;
public static final int INDEX_FILE_COL_NAME = 11;
public static final int INDEX_LINE_COL_NAME = 12;
public static final int INDEX_MILLIS_DELTA_COL_NAME = 13;
```
It makes the LINE and MILLIS_DELTA can't show correctly.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]