You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/04/06 16:12:37 UTC

[tomcat] branch master updated: Improve format of debugging message

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
     new ca66cfd  Improve format of debugging message
ca66cfd is described below

commit ca66cfd3d6fae198fbcf76be09b3e8f3f8232c0a
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Apr 6 17:12:14 2020 +0100

    Improve format of debugging message
---
 test/org/apache/tomcat/util/net/TestSsl.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/org/apache/tomcat/util/net/TestSsl.java b/test/org/apache/tomcat/util/net/TestSsl.java
index a560b55..f4d2c27 100644
--- a/test/org/apache/tomcat/util/net/TestSsl.java
+++ b/test/org/apache/tomcat/util/net/TestSsl.java
@@ -134,8 +134,8 @@ public class TestSsl extends TomcatBaseTest {
                         for (int i = 0; i < bytes.length; i++) {
                             int read = is.read();
                             if (bytes[i] != read) {
-                                System.err.print("Byte in position [" + i + "] had value [" + read +
-                                        "] rather than " + Byte.toString(bytes[i]));
+                                System.err.println("Byte in position [" + i + "] had value [" + read +
+                                        "] rather than [" + Byte.toString(bytes[i]) + "]");
                                 errorCount.incrementAndGet();
                                 break;
                             }


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org