Skip to content

Commit

Permalink
improves error log message
Browse files Browse the repository at this point in the history
  • Loading branch information
tjuerge committed Aug 14, 2024
1 parent 4426786 commit 05a091b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private List<ConfluencePage> getChildPages(String pageId) {
throw new IOException(response.asJson().toString());
}
} catch (IOException e) {
LOG.errorf(e, "Retrieving child pages from %s failed: %s", config.getBaseUrl(), e.getMessage());
LOG.errorf(e, "Retrieving child pages of %s from %s failed: %s", pageId, config.getBaseUrl(), e.getMessage());
}
return Collections.emptyList();
}
Expand Down

0 comments on commit 05a091b

Please sign in to comment.