Skip to content

Commit

Permalink
LOGBACK-844
Browse files Browse the repository at this point in the history
  • Loading branch information
kalgon authored and ceharris committed May 14, 2013
1 parent ba434ae commit 5af69f8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ public boolean isStarted() {
public void startInternal() throws LifecycleException {
executorService = ExecutorServiceUtil.newExecutorService();
if (filename == null) {
String tomcatHomeProperty = OptionHelper
.getSystemProperty("catalina.home");
String tomcatBaseProperty = OptionHelper
.getSystemProperty("catalina.base");

filename = tomcatHomeProperty + File.separatorChar + DEFAULT_CONFIG_FILE;
filename = tomcatBaseProperty + File.separatorChar + DEFAULT_CONFIG_FILE;
getStatusManager().add(
new InfoStatus("filename property not set. Assuming [" + filename
+ "]", this));
Expand Down

0 comments on commit 5af69f8

Please sign in to comment.