Skip to content

Commit 6236f56

Browse files
committed
refac: log the final request url
1 parent 6ec9ceb commit 6236f56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Adjust/sdk-core/src/main/java/com/adjust/sdk/network/ActivityPackageSender.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,6 @@ private String generateUrlStringForGET(final ActivityKind activityKind,
296296
uriBuilder.path(urlObject.getPath());
297297
uriBuilder.appendPath(activityPackagePath);
298298

299-
logger.debug("Making request to url: %s", uriBuilder.toString());
300-
301299
for (final Map.Entry<String, String> entry : activityPackageParameters.entrySet()) {
302300
uriBuilder.appendQueryParameter(entry.getKey(), entry.getValue());
303301
}
@@ -308,6 +306,8 @@ private String generateUrlStringForGET(final ActivityKind activityKind,
308306
}
309307
}
310308

309+
logger.debug("Making request to url: %s", uriBuilder.toString());
310+
311311
return uriBuilder.build().toString();
312312
}
313313

0 commit comments

Comments
 (0)