Skip to content

Commit 66e4921

Browse files
committed
Remove leftover log message from debug session
Instead of logging at info level, log it with debug, only and remove the unnecessary creation of a RuntimeException. Cleanup after commit bb0c455 Bugzilla Id: 65013
1 parent 551339a commit 66e4921

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/BasicCurlParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ private String getPostDataByDifferentOption(final String originalPostdata, Strin
989989
}
990990

991991
private String unquote(String value) {
992-
LoggerFactory.getLogger(this.getClass()).info("Unquote {}", value, new RuntimeException(""));
992+
LoggerFactory.getLogger(this.getClass()).debug("Unquote {}", value);
993993
if (value.charAt(0) == '"') {
994994
String result = value.substring(1, value.length() - 1);
995995
return result.replaceAll("\\\\(.)", "$1");

0 commit comments

Comments
 (0)