diff --git a/project/src/controllers/InsuranceController.ts b/project/src/controllers/InsuranceController.ts index 8ed14e89..7bb44a3e 100644 --- a/project/src/controllers/InsuranceController.ts +++ b/project/src/controllers/InsuranceController.ts @@ -106,10 +106,7 @@ export class InsuranceController const profileInsuranceDetails = this.saveServer.getProfile(sessionID).insurance; if (profileInsuranceDetails.length > 0) { - this.logger.debug( - `Found ${profileInsuranceDetails.length} insurance packages in profile ${sessionID}`, - true, - ); + this.logger.debug(`Found ${profileInsuranceDetails.length} insurance packages in profile ${sessionID}`); } return profileInsuranceDetails.filter((insured) => insuranceTime >= insured.scheduledTime);