Skip to content

Commit

Permalink
WL-3171 - Extra log info
Browse files Browse the repository at this point in the history
  • Loading branch information
VenoGau committed Feb 18, 2025
1 parent 1db68da commit 3f2047a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static <S, T> T executeSync(Class<S> serviceClass, Call<T> call) {
try {
Response<T> response = call.execute();
if (Objects.equals(serviceClass.getName(), "com.nicehash.platform.clients.lightning.impl.LightningService")) {
log.debug("ClientGenerator::executeSync: {}", response);
log.debug("ClientGenerator::executeSync call: {} response: {}", call.request(), response);
}
return getResult(serviceClass, response, null);
} catch (IOException e) {
Expand Down

0 comments on commit 3f2047a

Please sign in to comment.