Skip to content

Commit

Permalink
Change typo $s to %s
Browse files Browse the repository at this point in the history
  • Loading branch information
cYKatherine committed May 23, 2024
1 parent 2b8f75b commit 25a4eb1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ private void handleBucketsV1(RoutingContext rc) {
try {
LocalDateTime ld = LocalDateTime.parse(qp.get(0), DateTimeFormatter.ISO_LOCAL_DATE_TIME);
sinceTimestamp = ld.toInstant(ZoneOffset.UTC);
LOGGER.info(String.format("identity bucket endpoint is called with since_timestamp %s and site id $s", ld, AuthMiddleware.getAuthClient(rc).getSiteId()));
LOGGER.info(String.format("identity bucket endpoint is called with since_timestamp %s and site id %s", ld, AuthMiddleware.getAuthClient(rc).getSiteId()));
} catch (Exception e) {
ResponseUtil.ClientError(rc, "invalid date, must conform to ISO 8601");
return;
Expand Down Expand Up @@ -1220,7 +1220,7 @@ private void handleBucketsV2(RoutingContext rc) {
try {
LocalDateTime ld = LocalDateTime.parse(qp, DateTimeFormatter.ISO_LOCAL_DATE_TIME);
sinceTimestamp = ld.toInstant(ZoneOffset.UTC);
LOGGER.info(String.format("identity bucket endpoint is called with since_timestamp %s and site id $s", ld, AuthMiddleware.getAuthClient(rc).getSiteId()));
LOGGER.info(String.format("identity bucket endpoint is called with since_timestamp %s and site id %s", ld, AuthMiddleware.getAuthClient(rc).getSiteId()));
} catch (Exception e) {
ResponseUtil.ClientError(rc, "invalid date, must conform to ISO 8601");
return;
Expand Down

0 comments on commit 25a4eb1

Please sign in to comment.