/hg/icedtea-web: FileLog.java: path to log is printed to consol...

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


changeset 63d4836a377c in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=63d4836a377c
author: Jiri Vanek <jvanek at redhat.com>
date: Thu May 11 13:20:34 2017 +0200

	FileLog.java: path  to log is printed to console, last colon removed


diffstat:

 ChangeLog                                           |  2 +-
 netx/net/sourceforge/jnlp/util/logging/FileLog.java |  6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diffs (34 lines):

diff -r a75145805b3f -r 63d4836a377c ChangeLog
--- a/ChangeLog	Thu May 11 12:56:46 2017 +0200
+++ b/ChangeLog	Thu May 11 13:20:34 2017 +0200
@@ -1,6 +1,6 @@
 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
+	* netx/net/sourceforge/jnlp/util/logging/FileLog.java: on windows, name of logs do not contain colons, path is printed to console
 
 2017-05-10  Jiri Vanek <jvanek at redhat.com>
 
diff -r a75145805b3f -r 63d4836a377c netx/net/sourceforge/jnlp/util/logging/FileLog.java
--- a/netx/net/sourceforge/jnlp/util/logging/FileLog.java	Thu May 11 12:56:46 2017 +0200
+++ b/netx/net/sourceforge/jnlp/util/logging/FileLog.java	Thu May 11 13:20:34 2017 +0200
@@ -77,7 +77,7 @@
         }
     }
 
-    public static final SimpleDateFormat fileLogNameFormatter = new SimpleDateFormat("yyyy-MM-dd_HH"+getColon()+"mm:ss.S");
+    public static final SimpleDateFormat fileLogNameFormatter = new SimpleDateFormat("yyyy-MM-dd_HH" + getColon() + "mm" + getColon() + "ss.S");
     /**"Tue Nov 19 09:43:50 CET 2013"*/
     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";
@@ -108,7 +108,9 @@
     }
 
     private static String getFileName(String id) {
-        return LogConfig.getLogConfig().getIcedteaLogDir() + "itw-"+id+"-" + getStamp() + ".log";
+        String s = LogConfig.getLogConfig().getIcedteaLogDir() + "itw-" + id + "-" + getStamp() + ".log";
+        OutputController.getLogger().log("Attempting to log into: " + s);
+        return s;
     }
     
   


More information about the distro-pkg-dev mailing list