--- projects/cms/source/server/uk/org/iscream/cms/server/core/loggers/FileLogger.java 2001/03/14 23:25:29 1.8 +++ projects/cms/source/server/uk/org/iscream/cms/server/core/loggers/FileLogger.java 2001/05/29 17:02:35 1.9 @@ -1,9 +1,9 @@ //---PACKAGE DECLARATION--- -package uk.org.iscream.core.loggers; +package uk.org.iscream.cms.server.core.loggers; //---IMPORTS--- -import uk.org.iscream.util.*; -import uk.org.iscream.core.*; +import uk.org.iscream.cms.server.util.*; +import uk.org.iscream.cms.server.core.*; import java.util.Date; import java.text.DateFormat; import java.util.Locale; @@ -18,7 +18,7 @@ import java.io.IOException; * logging ot a text file. * * @author $Author: tdb $ - * @version $Id: FileLogger.java,v 1.8 2001/03/14 23:25:29 tdb Exp $ + * @version $Id: FileLogger.java,v 1.9 2001/05/29 17:02:35 tdb Exp $ */ public class FileLogger implements LoggerImpl { @@ -27,7 +27,7 @@ public class FileLogger implements LoggerImpl { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.8 $"; + public final String REVISION = "$Revision: 1.9 $"; //---STATIC METHODS--- @@ -46,7 +46,7 @@ public class FileLogger implements LoggerImpl { * @throws IOException if there is a problem with the file check. */ public FileLogger() throws IOException{ - filename = System.getProperty("uk.org.iscream.LoggerClass.FileLogger.filename"); + filename = System.getProperty("uk.org.iscream.cms.server.LoggerClass.FileLogger.filename"); // Perform file check to make sure writing is ok if(!fileCheck()){ // Have to system.out.println errors because logging mechanism failed ! @@ -241,7 +241,7 @@ public class FileLogger implements LoggerImpl { * 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