--- projects/cms/source/util/uk/org/iscream/cms/util/FormatName.java 2001/02/25 20:49:29 1.6 +++ projects/cms/source/util/uk/org/iscream/cms/util/FormatName.java 2001/02/26 00:46:17 1.7 @@ -13,7 +13,7 @@ import java.util.Locale; * a toString String to send to the logger. * * @author $Author: tdb $ - * @version $Id: FormatName.java,v 1.6 2001/02/25 20:49:29 tdb Exp $ + * @version $Id: FormatName.java,v 1.7 2001/02/26 00:46:17 tdb Exp $ */ public class FormatName { @@ -64,7 +64,7 @@ public class FormatName { * @return The string to be written to the log. */ public static String formatLogLine(String source, int verbosity, String message){ - String date = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.MEDIUM).format(new Date()); + String date = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.MEDIUM, Locale.UK).format(new Date()); return "[" + date + "] [" + VERBOSITY_NAMES[verbosity] + "] " + source + ": " + message; }