| | |
|
|
|
Deployment modifications
New Project Zero applications are created with developer aids installed, by default. This section summarizes modifications that you might consider when deploying a Zero-based application.
Removing zero.core.webtools
Developer Web tools (zero.core.webtools) are generally not used in deployment. You can remove the zero.core.webtools dependency by removing the entry from the config/ivy.xml file of your application. See the Declaring dependencies section of the Dependencies article for details.
Removing the console log handler
Console logging effects run-time performance. You can disable console logging by changing the list of log handlers in <appHome>/config/logging.properties. Specifically, change the following code snippet:
handlers = java.util.logging.ConsoleHandler zero.core.logging.LogHandler zero.core.logging.TraceHandler
#handlers = zero.core.logging.LogHandler zero.core.logging.TraceHandler
to:
#handlers = java.util.logging.ConsoleHandler zero.core.logging.LogHandler zero.core.logging.TraceHandler
handlers = zero.core.logging.LogHandler zero.core.logging.TraceHandler
Also, confirm that the logger and log handler levels are set appropriately for your situation. See the Logging and tracing article for details.
|
|
r5 - 14 Dec 2007 - 19:38:25 - madhu
|
|
|
| | |