You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rm...@apache.org on 2021/05/08 23:06:19 UTC

[logging-chainsaw] branch master updated: column LINE location is not correct.

This is an automated email from the ASF dual-hosted git repository.

rmiddleton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-chainsaw.git


The following commit(s) were added to refs/heads/master by this push:
     new 3537cf7  column LINE location is not correct.
     new b3bf48d  Merge pull request #6 from ldd200888/master
3537cf7 is described below

commit 3537cf7cb751b094c3309c490742b00666fabc00
Author: l00347347 <li...@huawei.com>
AuthorDate: Thu Jan 21 14:44:21 2021 +0800

    column LINE location is not correct.
---
 src/main/java/org/apache/log4j/chainsaw/ChainsawColumns.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/log4j/chainsaw/ChainsawColumns.java b/src/main/java/org/apache/log4j/chainsaw/ChainsawColumns.java
index 037fd24..1736a70 100644
--- a/src/main/java/org/apache/log4j/chainsaw/ChainsawColumns.java
+++ b/src/main/java/org/apache/log4j/chainsaw/ChainsawColumns.java
@@ -43,8 +43,8 @@ public class ChainsawColumns {
         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);
+        columnNames.add(ChainsawConstants.MILLIS_DELTA_COL_NAME_LOWERCASE.toUpperCase()); //add uppercase col name
 
         //NOTE:  ID must ALWAYS be last field because the model adds this value itself as an identifier to the end of the consructed vector
         columnNames.add(ChainsawConstants.ID_COL_NAME);