JHipster - Log Files

前端 未结 6 1333
借酒劲吻你
借酒劲吻你 2021-02-06 04:50

I have a JHipster application running and I would like to know where are the logs files. Where are they generated ? (It\'s a newbie question, but can\'t find anything)

I

6条回答
  •  旧时难觅i
    2021-02-06 05:26

    In Dev mode, modifying logback-spring.xml only creates log file but does not log data to this file (file is created but empty). I had to add "file" key into "logging" key in applicatio-dev.yml file:

    logging:

    file: *path/log_file_name.log* 
    

    (for example:

    logging:

    file: logs/application1.log
    

    )

提交回复
热议问题