Spring boot : Logs not getting generated with log4j2 config file having custom name





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I am trying to use log4j2 with Spring Boot (2.0.3).



I have added below dependency in my pom file and excluded spring-boot-starter-logging as well:



<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>


The problem is when I deploy my war on tomcat, and put the config file with name log4j2.xml on class path(WEB-INF/classes) logs are getting generated. But If I am trying to use a different file name by putting below property in application.properties, it is not working.



logging.config=classpath:mylog4j2.xml


I have put mylog4j2 in the same folder (WEB-INF/classes) as log4j2, but still logs are not getting generated.



Also I am not allowed to set config path using command line arguments and have to use property file only.



Can anyone please help me out.










share|improve this question

























  • Also, when I am running the same code from eclipse using this property (logging.config=mylog4j2.xml), logs are getting generated successfully.

    – Anjum
    Nov 16 '18 at 12:04











  • application.properties are not system properties. Try this out: stackoverflow.com/a/36896400/1235935. Or else pass the property in the java command line used to start the app. -Dlogging.config=classpath:mylog4j2.xml

    – Saptarshi Basu
    Dec 5 '18 at 6:42




















0















I am trying to use log4j2 with Spring Boot (2.0.3).



I have added below dependency in my pom file and excluded spring-boot-starter-logging as well:



<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>


The problem is when I deploy my war on tomcat, and put the config file with name log4j2.xml on class path(WEB-INF/classes) logs are getting generated. But If I am trying to use a different file name by putting below property in application.properties, it is not working.



logging.config=classpath:mylog4j2.xml


I have put mylog4j2 in the same folder (WEB-INF/classes) as log4j2, but still logs are not getting generated.



Also I am not allowed to set config path using command line arguments and have to use property file only.



Can anyone please help me out.










share|improve this question

























  • Also, when I am running the same code from eclipse using this property (logging.config=mylog4j2.xml), logs are getting generated successfully.

    – Anjum
    Nov 16 '18 at 12:04











  • application.properties are not system properties. Try this out: stackoverflow.com/a/36896400/1235935. Or else pass the property in the java command line used to start the app. -Dlogging.config=classpath:mylog4j2.xml

    – Saptarshi Basu
    Dec 5 '18 at 6:42
















0












0








0








I am trying to use log4j2 with Spring Boot (2.0.3).



I have added below dependency in my pom file and excluded spring-boot-starter-logging as well:



<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>


The problem is when I deploy my war on tomcat, and put the config file with name log4j2.xml on class path(WEB-INF/classes) logs are getting generated. But If I am trying to use a different file name by putting below property in application.properties, it is not working.



logging.config=classpath:mylog4j2.xml


I have put mylog4j2 in the same folder (WEB-INF/classes) as log4j2, but still logs are not getting generated.



Also I am not allowed to set config path using command line arguments and have to use property file only.



Can anyone please help me out.










share|improve this question
















I am trying to use log4j2 with Spring Boot (2.0.3).



I have added below dependency in my pom file and excluded spring-boot-starter-logging as well:



<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>


The problem is when I deploy my war on tomcat, and put the config file with name log4j2.xml on class path(WEB-INF/classes) logs are getting generated. But If I am trying to use a different file name by putting below property in application.properties, it is not working.



logging.config=classpath:mylog4j2.xml


I have put mylog4j2 in the same folder (WEB-INF/classes) as log4j2, but still logs are not getting generated.



Also I am not allowed to set config path using command line arguments and have to use property file only.



Can anyone please help me out.







java spring spring-boot logging config






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 5 '18 at 6:29







Anjum

















asked Nov 16 '18 at 11:26









AnjumAnjum

1




1













  • Also, when I am running the same code from eclipse using this property (logging.config=mylog4j2.xml), logs are getting generated successfully.

    – Anjum
    Nov 16 '18 at 12:04











  • application.properties are not system properties. Try this out: stackoverflow.com/a/36896400/1235935. Or else pass the property in the java command line used to start the app. -Dlogging.config=classpath:mylog4j2.xml

    – Saptarshi Basu
    Dec 5 '18 at 6:42





















  • Also, when I am running the same code from eclipse using this property (logging.config=mylog4j2.xml), logs are getting generated successfully.

    – Anjum
    Nov 16 '18 at 12:04











  • application.properties are not system properties. Try this out: stackoverflow.com/a/36896400/1235935. Or else pass the property in the java command line used to start the app. -Dlogging.config=classpath:mylog4j2.xml

    – Saptarshi Basu
    Dec 5 '18 at 6:42



















Also, when I am running the same code from eclipse using this property (logging.config=mylog4j2.xml), logs are getting generated successfully.

– Anjum
Nov 16 '18 at 12:04





Also, when I am running the same code from eclipse using this property (logging.config=mylog4j2.xml), logs are getting generated successfully.

– Anjum
Nov 16 '18 at 12:04













application.properties are not system properties. Try this out: stackoverflow.com/a/36896400/1235935. Or else pass the property in the java command line used to start the app. -Dlogging.config=classpath:mylog4j2.xml

– Saptarshi Basu
Dec 5 '18 at 6:42







application.properties are not system properties. Try this out: stackoverflow.com/a/36896400/1235935. Or else pass the property in the java command line used to start the app. -Dlogging.config=classpath:mylog4j2.xml

– Saptarshi Basu
Dec 5 '18 at 6:42














0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53336947%2fspring-boot-logs-not-getting-generated-with-log4j2-config-file-having-custom-n%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53336947%2fspring-boot-logs-not-getting-generated-with-log4j2-config-file-having-custom-n%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Florida Star v. B. J. F.

Error while running script in elastic search , gateway timeout

Retrieve a Users Dashboard in Tumblr with R and TumblR. Oauth Issues