Fix a couple log messages.

This commit is contained in:
Timothy Bish 2015-04-28 14:24:45 -04:00
parent d2248e92d7
commit b444b6c463
1 changed files with 2 additions and 2 deletions

View File

@ -466,7 +466,7 @@ public class JMSClientTest extends JMSClientTestSupport {
session.createConsumer(queue);
fail("Should have thrown an IllegalStateException");
} catch (Exception ex) {
LOG.info("Caught exception on receive: {}", ex);
LOG.info("Caught exception on consumer create: {}", ex);
}
}
@ -563,7 +563,7 @@ public class JMSClientTest extends JMSClientTestSupport {
msg = "Should have returned null";
}
} catch (Exception ex) {
LOG.info("Caught exception on receive(1000): {}", ex);
LOG.info("Caught exception on receive(): {}", ex);
}
}
};