finally remove debug loggin

This commit is contained in:
2025-12-18 23:49:30 +01:00
parent 8e63df0a45
commit 8dd2b836d6
3 changed files with 2 additions and 12 deletions
@@ -516,14 +516,8 @@ public class PretixManager implements SmartInitializingSingleton {
*/
public JsonElement request(String path, HttpMethod method, JsonElement payload,
MultiValueMap<String, String> queryParameters) {
String cleanedPath = path.replace(host, "");
logger.debug("method:" + method.toString() + ", path: " + path + ", cleaned path: " + cleanedPath + ", host: "
+ host);
WebClient.RequestBodySpec request = webClient.method(method)
.uri(uriBuilder -> uriBuilder.path(cleanedPath).queryParams(queryParameters).build());
.uri(uriBuilder -> uriBuilder.path(path).queryParams(queryParameters).build());
if (payload != null) {
request.bodyValue(gson.toJson(payload));