Skip to content

Commit

Permalink
Merge pull request #304 from flickmatch/pass-mutations
Browse files Browse the repository at this point in the history
Removed unecessary logs.
  • Loading branch information
abhimanyu-fm authored Sep 19, 2024
2 parents ea85ada + 40fc2db commit 0f25928
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public List<com.flickmatch.platform.graphql.type.Event> getEvents(String cityId,
String startFormattedDate = DateUtil.extractDateFromISOFormatDate(startDate, localTimeZone);
String endFormattedDate = DateUtil.extractDateFromISOFormatDate(endDate, localTimeZone);

log.info(String.format("Fetching events for cityId %s from %s to %s", cityId, startFormattedDate, endFormattedDate));
// log.info(String.format("Fetching events for cityId %s from %s to %s", cityId, startFormattedDate, endFormattedDate));

// Fetch all events within the date range
List<Event> eventsInRange = eventRepository.findByEventIdCityIdAndEventIdDateBetween(cityId, startFormattedDate, endFormattedDate);
Expand Down

0 comments on commit 0f25928

Please sign in to comment.