From 273b872d5314162cdb561a9708d1b411f6a1cfd4 Mon Sep 17 00:00:00 2001 From: Rogiel Date: Thu, 29 Dec 2011 23:50:15 -0200 Subject: [PATCH] Refactors logging service package --- .../service/core/{ => logging}/Log4JLoggingService.java | 2 +- .../l2jserver/service/core/{ => logging}/LoggingService.java | 2 +- .../core/{ => logging}/LoggingServiceConfiguration.java | 2 +- .../core/{log4j => logging}/TruncateToZipFileAppender.java | 2 +- l2jserver2-gameserver/distribution/services.xml | 4 ++-- l2jserver2-gameserver/services-sample.xml | 4 ++-- .../service/database/GameServerJDBCDatabaseService.java | 2 +- .../service/database/GameServerOrientDatabaseService.java | 2 +- .../service/game/scripting/ScriptingServiceImpl.java | 2 +- .../l2jserver/service/game/template/XMLTemplateService.java | 2 +- .../com/l2jserver/service/game/world/WorldServiceImpl.java | 2 +- .../com/l2jserver/service/network/NettyNetworkService.java | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-) rename l2jserver2-common/src/main/java/com/l2jserver/service/core/{ => logging}/Log4JLoggingService.java (98%) rename l2jserver2-common/src/main/java/com/l2jserver/service/core/{ => logging}/LoggingService.java (95%) rename l2jserver2-common/src/main/java/com/l2jserver/service/core/{ => logging}/LoggingServiceConfiguration.java (93%) rename l2jserver2-common/src/main/java/com/l2jserver/service/core/{log4j => logging}/TruncateToZipFileAppender.java (95%) diff --git a/l2jserver2-common/src/main/java/com/l2jserver/service/core/Log4JLoggingService.java b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/Log4JLoggingService.java similarity index 98% rename from l2jserver2-common/src/main/java/com/l2jserver/service/core/Log4JLoggingService.java rename to l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/Log4JLoggingService.java index 7b3a45c6b..d0074b0be 100644 --- a/l2jserver2-common/src/main/java/com/l2jserver/service/core/Log4JLoggingService.java +++ b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/Log4JLoggingService.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with l2jserver2. If not, see . */ -package com.l2jserver.service.core; +package com.l2jserver.service.core.logging; import org.apache.log4j.BasicConfigurator; import org.apache.log4j.ConsoleAppender; diff --git a/l2jserver2-common/src/main/java/com/l2jserver/service/core/LoggingService.java b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/LoggingService.java similarity index 95% rename from l2jserver2-common/src/main/java/com/l2jserver/service/core/LoggingService.java rename to l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/LoggingService.java index 35ab12baa..2abc446c6 100644 --- a/l2jserver2-common/src/main/java/com/l2jserver/service/core/LoggingService.java +++ b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/LoggingService.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with l2jserver2. If not, see . */ -package com.l2jserver.service.core; +package com.l2jserver.service.core.logging; import com.l2jserver.service.Service; diff --git a/l2jserver2-common/src/main/java/com/l2jserver/service/core/LoggingServiceConfiguration.java b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/LoggingServiceConfiguration.java similarity index 93% rename from l2jserver2-common/src/main/java/com/l2jserver/service/core/LoggingServiceConfiguration.java rename to l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/LoggingServiceConfiguration.java index eeea26269..be92f1788 100644 --- a/l2jserver2-common/src/main/java/com/l2jserver/service/core/LoggingServiceConfiguration.java +++ b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/LoggingServiceConfiguration.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with l2jserver2. If not, see . */ -package com.l2jserver.service.core; +package com.l2jserver.service.core.logging; import org.w3c.dom.Node; diff --git a/l2jserver2-common/src/main/java/com/l2jserver/service/core/log4j/TruncateToZipFileAppender.java b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/TruncateToZipFileAppender.java similarity index 95% rename from l2jserver2-common/src/main/java/com/l2jserver/service/core/log4j/TruncateToZipFileAppender.java rename to l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/TruncateToZipFileAppender.java index b1a43031c..bfb23a667 100644 --- a/l2jserver2-common/src/main/java/com/l2jserver/service/core/log4j/TruncateToZipFileAppender.java +++ b/l2jserver2-common/src/main/java/com/l2jserver/service/core/logging/TruncateToZipFileAppender.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with l2jserver. If not, see . */ -package com.l2jserver.service.core.log4j; +package com.l2jserver.service.core.logging; import java.io.File; import java.io.FileInputStream; diff --git a/l2jserver2-gameserver/distribution/services.xml b/l2jserver2-gameserver/distribution/services.xml index 3dbde7e07..e46d1c372 100644 --- a/l2jserver2-gameserver/distribution/services.xml +++ b/l2jserver2-gameserver/distribution/services.xml @@ -37,8 +37,8 @@ implementation="com.l2jserver.service.configuration.XMLConfigurationService" /> - + diff --git a/l2jserver2-gameserver/services-sample.xml b/l2jserver2-gameserver/services-sample.xml index ee3e8b875..ef4bcc44e 100644 --- a/l2jserver2-gameserver/services-sample.xml +++ b/l2jserver2-gameserver/services-sample.xml @@ -48,8 +48,8 @@ implementation="com.l2jserver.service.configuration.XMLConfigurationService" /> - +