Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] Suggested improvement

Hi,
 
I would like to suggest making the log message a little more descriptive.
 
https://github.com/eclipse/jetty.project/blob/jetty-11.0.2/jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyRunMojo.java#L58-L67
 
 
 
Line 147
private void startScanner()
throws Exception
{
if (scan < 0)
{
getLog().info("Redeployment not enabled");
return; //no automatic or manual redeployment
}
 
getLog().info("Redeployment not enabled,  Default Scan Interval = -1 , change value to  0 for autodeployment or  set Number of <Seconds> ");
 

Back to the top