From 2b8753f4bb75b8378853e86e68b66cdfc9342c82 Mon Sep 17 00:00:00 2001 From: Robert Gemmell Date: Sun, 10 Mar 2013 22:30:01 +0000 Subject: QPID-4390: misc logging related changes git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1454938 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/qpid/server/management/plugin/HttpManagement.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qpid/java/broker-plugins/management-http') diff --git a/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java b/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java index 8fa9a59038..903d322508 100644 --- a/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java +++ b/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagement.java @@ -320,20 +320,20 @@ public class HttpManagement extends AbstractPluginAdapter { if (keyStorePath == null) { - throw new RuntimeException("Management SSL keystore path not defined, unable to start SSL protected HTTP connector"); + throw new RuntimeException("SSL keystore path not defined, unable to start HTTPS connector"); } if (password == null) { - throw new RuntimeException("Management SSL keystore password, unable to start SSL protected HTTP connector"); + throw new RuntimeException("SSL keystore password not defined, unable to start HTTPS connector"); } File ksf = new File(keyStorePath); if (!ksf.exists()) { - throw new RuntimeException("Cannot find management SSL keystore file: " + ksf); + throw new RuntimeException("Cannot find SSL keystore file for HTTPS management: " + ksf); } if (!ksf.canRead()) { - throw new RuntimeException("Cannot read management SSL keystore file: " + ksf + ". Check permissions."); + throw new RuntimeException("Cannot read SSL keystore file for HTTPS management: " + ksf + ". Check permissions."); } } -- cgit v1.2.1