Spring boot and logging location -
i use spring boot 1.3.7.
in application.properties have
logging.file=syste.log logging.path=/home/apps/log my jar file located in /home/apps
at runtime, logging file located apps running (/home/apps).
why value in logging.path not used?
according the documentation specifying both logging.file , logging.path not supported (or handled), should specify full path in logging.file setting:
logging.file=/home/apps/log/syste.log
Comments
Post a Comment