ScheduleSpanCalculator errors in the logsIssue Errors appear in the instance logs millions of time over a short period. SEVERE ***ERROR*** ScheduleSpanCalculator.getNextDate loopCauseA business rule contains a while loop that evaluates the current date and time to see if it was within a specific schedule. If not, it adds 24 hours to the date/time object and checks again. The schedule being considered is an 8:00 AM - 5:00 PM Mon. - Fri. schedule. If the business rule is fired at 6:00 AM, it will never fall within the schedule and the while loop will run infinity. If this loops runs 75,000 times, we begin printing the error messages to the logs. Out of box testing showed that if triggered and allowed to execute for 4 hours, the loop would run about 160,000 times and the error message would print about 50,000 times. There is also a large performance spike when this code executes.ResolutionIdentify the loop that triggers the error message and disable the script. Cancel all transactions that may be running this code.