aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/tools/CertInformation.java
diff options
context:
space:
mode:
authorJiri Vanek <jvanek@redhat.com>2013-09-25 18:50:18 +0200
committerJiri Vanek <jvanek@redhat.com>2013-09-25 18:50:18 +0200
commit19e74fe5dacd03e0cb5582f840e15262e39fe24f (patch)
tree38ffc4f47f7641f8d20ba0e0e8a97a97ffb1db64 /netx/net/sourceforge/jnlp/tools/CertInformation.java
parentfcd5c4c69fc5ea84b04f309eb40e295eab921fd8 (diff)
Introduced logging bottleneck
Diffstat (limited to 'netx/net/sourceforge/jnlp/tools/CertInformation.java')
-rw-r--r--netx/net/sourceforge/jnlp/tools/CertInformation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/netx/net/sourceforge/jnlp/tools/CertInformation.java b/netx/net/sourceforge/jnlp/tools/CertInformation.java
index 6d6d27e..18a7b64 100644
--- a/netx/net/sourceforge/jnlp/tools/CertInformation.java
+++ b/netx/net/sourceforge/jnlp/tools/CertInformation.java
@@ -46,6 +46,7 @@ import java.util.List;
import java.util.Map;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
+import net.sourceforge.jnlp.util.logging.OutputController;
/**
* Maintains information about a CertPath that has signed at least one of the
@@ -163,8 +164,7 @@ public class CertInformation {
*/
public void setNumJarEntriesSigned(String jarName, int signedEntriesCount) {
if (signedJars.containsKey(jarName)) {
- if (JNLPRuntime.isDebug())
- System.err.println("WARNING: A jar that has already been "
+ OutputController.getLogger().log(OutputController.Level.ERROR_DEBUG, "WARNING: A jar that has already been "
+ "verified is being yet again verified: " + jarName);
} else {
signedJars.put(jarName, signedEntriesCount);