Editor/Viewer to display and analyze Maven logs?

前端 未结 3 430
逝去的感伤
逝去的感伤 2021-01-21 00:55

I use Maven for building Java projects. The output of Maven has immense size. Is there an editor or log viewer that makes analyzing logs easier?

3条回答
  •  萌比男神i
    2021-01-21 01:52

    less is your friend. You can also tee the output to some file and view that with your favorite editor.

    mvn clean package | less
    # or
    mvn clean package | tee mvn.log
    less mvn.log # using less as editor.
    

提交回复
热议问题