Author: taher
Date: Mon Oct 9 12:45:20 2017
New Revision: 1811566
URL:
http://svn.apache.org/viewvc?rev=1811566&view=revLog:
Improved: removed dependency from start component on base
Debug class should not be used directly from the start component, hence replaced
it with standard System.out.println
Modified:
ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java
Modified: ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java?rev=1811566&r1=1811565&r2=1811566&view=diff==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java (original)
+++ ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java Mon Oct 9 12:45:20 2017
@@ -26,7 +26,6 @@ import java.util.List;
import java.util.concurrent.atomic.AtomicReference;
import org.apache.ofbiz.base.start.Start.ServerState;
-import org.apache.ofbiz.base.util.Debug;
/**
* The StartupControlPanel controls OFBiz by executing high level
@@ -81,12 +80,12 @@ final class StartupControlPanel {
private static void printStartupMessage(Config config) {
if (!config.shutdownAfterLoad) {
String lineSeparator = System.lineSeparator();
- Debug.logInfo( lineSeparator + " ____ __________ _" +
- lineSeparator + " / __ \\/ ____/ __ )(_)___" +
- lineSeparator + " / / / / /_ / __ / /_ /" +
- lineSeparator + "/ /_/ / __/ / /_/ / / / /_" +
- lineSeparator + "\\____/_/ /_____/_/ /___/ is started and ready." +
- lineSeparator, module);
+ System.out.println(lineSeparator + " ____ __________ _" +
+ lineSeparator + " / __ \\/ ____/ __ )(_)___" +
+ lineSeparator + " / / / / /_ / __ / /_ /" +
+ lineSeparator + "/ /_/ / __/ / /_/ / / / /_" +
+ lineSeparator + "\\____/_/ /_____/_/ /___/ is started and ready." +
+ lineSeparator);
}
}