--- projects/cms/source/server/uk/org/iscream/cms/server/core/LoggerServant.java 2001/03/14 23:25:29 1.9 +++ projects/cms/source/server/uk/org/iscream/cms/server/core/LoggerServant.java 2001/05/29 17:02:34 1.10 @@ -1,8 +1,8 @@ //---PACKAGE DECLARATION--- -package uk.org.iscream.core; +package uk.org.iscream.cms.server.core; //---IMPORTS--- -import uk.org.iscream.util.*; +import uk.org.iscream.cms.server.util.*; /** * The LoggerServant is an implementation of the Logger defined @@ -10,7 +10,7 @@ import uk.org.iscream.util.*; * over CORBA to a local implementation of the LoggerImpl interface. * * @author $Author: tdb $ - * @version $Id: LoggerServant.java,v 1.9 2001/03/14 23:25:29 tdb Exp $ + * @version $Id: LoggerServant.java,v 1.10 2001/05/29 17:02:34 tdb Exp $ */ class LoggerServant extends LoggerPOA { @@ -19,7 +19,7 @@ class LoggerServant extends LoggerPOA { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.9 $"; + public final String REVISION = "$Revision: 1.10 $"; /** * An array of names of verbosity levels. @@ -39,7 +39,7 @@ class LoggerServant extends LoggerPOA { */ public LoggerServant(LoggerImpl logger) { _logger = logger; - _verbosityLevel = Integer.parseInt(System.getProperty("uk.org.iscream.Verbosity")); + _verbosityLevel = Integer.parseInt(System.getProperty("uk.org.iscream.cms.server.Verbosity")); write(toString(), Logger.SYSINIT, "started"); write(toString(), Logger.SYSMSG, "using verbosity " + _verbosityLevel); } @@ -67,7 +67,7 @@ class LoggerServant extends LoggerPOA { * Overrides the {@link java.lang.Object#toString() Object.toString()} * method to provide clean logging (every class should have this). * - * This uses the uk.org.iscream.util.FormatName class + * This uses the uk.org.iscream.cms.server.util.FormatName class * to format the toString() * * @return the name of this class and its CVS revision