Skip to content

Commit 8a59b30

Browse files
authored
Issue #13364 change deploy WARN to DEBUG (#13365)
1 parent b7e7a34 commit 8a59b30

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jetty-core/jetty-deploy/src/main/java/org/eclipse/jetty/deploy/providers/ScanningAppProvider.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ protected App createApp(Path path)
181181
}
182182
}
183183

184-
LOG.warn("{} no environment for {}, ignoring", this, app);
184+
if (LOG.isDebugEnabled())
185+
LOG.debug("{} no matching environment for {}, ignoring", this, app);
185186
return null;
186187
}
187188

@@ -449,6 +450,6 @@ public void scan()
449450
@Override
450451
public String toString()
451452
{
452-
return String.format("%s@%x%s", this.getClass(), hashCode(), _monitored);
453+
return String.format("%s@%x[%s]%s", this.getClass(), hashCode(), _environmentName, _monitored);
453454
}
454455
}

0 commit comments

Comments
 (0)