You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2020/09/26 09:09:39 UTC

[jmeter] branch master updated: Correct string formatting for log message

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 39000d3  Correct string formatting for log message
39000d3 is described below

commit 39000d361484ae65af4b6bca6e9662dbb8e8c2ba
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Sat Sep 26 10:51:05 2020 +0200

    Correct string formatting for log message
    
    Regression introduced with 0a51044626c5d9f5c228e26f5badb29d8aa2ea54 (but seems
    to be not that bad, as nobody reported it in the last three years :) )
---
 .../apache/jmeter/protocol/jdbc/processor/AbstractJDBCProcessor.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/protocol/jdbc/src/main/java/org/apache/jmeter/protocol/jdbc/processor/AbstractJDBCProcessor.java b/src/protocol/jdbc/src/main/java/org/apache/jmeter/protocol/jdbc/processor/AbstractJDBCProcessor.java
index ba019a5..c8de760 100644
--- a/src/protocol/jdbc/src/main/java/org/apache/jmeter/protocol/jdbc/processor/AbstractJDBCProcessor.java
+++ b/src/protocol/jdbc/src/main/java/org/apache/jmeter/protocol/jdbc/processor/AbstractJDBCProcessor.java
@@ -48,7 +48,7 @@ public abstract class AbstractJDBCProcessor extends AbstractJDBCTestElement {
         } catch (SQLException ex) {
             log.warn("SQL Problem in {}: {}", getName(), ex.toString());
         } catch (IOException ex) {
-            log.warn("IO Problem in {}: {}"+ getName(), ex.toString());
+            log.warn("IO Problem in {}: {}", getName(), ex.toString());
         } catch (UnsupportedOperationException ex) {
             log.warn("Execution Problem in {}: {}", getName(), ex.toString());
         }