/hg/icedtea-web: FileLog.java: on windows, name of logs do not c...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Thu May 11 10:47:11 UTC 2017


changeset a75145805b3f in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=a75145805b3f
author: Jiri Vanek <jvanek at redhat.com>
date: Thu May 11 12:56:46 2017 +0200

	FileLog.java: on windows, name of logs do not contain colons


diffstat:

 ChangeLog                                           |   4 ++++
 netx/net/sourceforge/jnlp/util/logging/FileLog.java |  13 +++++++++++--
 2 files changed, 15 insertions(+), 2 deletions(-)

diffs (49 lines):

diff -r 7d8419b9aece -r a75145805b3f ChangeLog
--- a/ChangeLog	Wed May 10 19:23:53 2017 +0200
+++ b/ChangeLog	Thu May 11 12:56:46 2017 +0200
@@ -1,3 +1,7 @@
+2017-05-11  Jiri Vanek <jvanek at redhat.com>
+
+	* netx/net/sourceforge/jnlp/util/logging/FileLog.java: on windows, name of logs do not contain colons
+
 2017-05-10  Jiri Vanek <jvanek at redhat.com>
 
 	Added support for pure windows image and distribute-able windows-bin-dist archive 
diff -r 7d8419b9aece -r a75145805b3f netx/net/sourceforge/jnlp/util/logging/FileLog.java
--- a/netx/net/sourceforge/jnlp/util/logging/FileLog.java	Wed May 10 19:23:53 2017 +0200
+++ b/netx/net/sourceforge/jnlp/util/logging/FileLog.java	Thu May 11 12:56:46 2017 +0200
@@ -38,6 +38,7 @@
 
 import java.text.SimpleDateFormat;
 import java.util.Date;
+import net.sourceforge.jnlp.runtime.JNLPRuntime;
 import net.sourceforge.jnlp.util.docprovider.TextsProvider;
 import net.sourceforge.jnlp.util.logging.filelogs.LogBasedFileLog;
 import net.sourceforge.jnlp.util.logging.filelogs.WriterBasedFileLog;
@@ -51,6 +52,14 @@
     public static Header getHeadlineHeader() {
         return new Header(OutputController.Level.WARNING_ALL, Thread.currentThread().getStackTrace(), Thread.currentThread(), false);
     }
+
+    private static String getColon() {
+        if (JNLPRuntime.isWindows()) {
+            return "_";
+        } else {
+            return ":";
+        }
+    }
     
     private static final class SingleStreamLoggerImpl implements SingleStreamLogger {
 
@@ -68,9 +77,9 @@
         }
     }
 
-    public static final SimpleDateFormat fileLogNameFormatter = new SimpleDateFormat("yyyy-MM-dd_HH:mm:ss.S");
+    public static final SimpleDateFormat fileLogNameFormatter = new SimpleDateFormat("yyyy-MM-dd_HH"+getColon()+"mm:ss.S");
     /**"Tue Nov 19 09:43:50 CET 2013"*/
-    public static final SimpleDateFormat pluginSharedFormatter = new SimpleDateFormat("EEE MMM dd HH:mm:ss ZZZ yyyy");
+    public static final SimpleDateFormat pluginSharedFormatter = new SimpleDateFormat("EEE MMM dd HH" + getColon() + "mm" + getColon() + "ss ZZZ yyyy");
     public static final String defaultloggerName = TextsProvider.ITW + " file-logger";
 
 


More information about the distro-pkg-dev mailing list