diff --git a/project/src/controllers/InsuranceController.ts b/project/src/controllers/InsuranceController.ts index f7de9400..b1fd72b2 100644 --- a/project/src/controllers/InsuranceController.ts +++ b/project/src/controllers/InsuranceController.ts @@ -102,7 +102,7 @@ export class InsuranceController const insuranceTime = time || this.timeUtil.getTimestamp(); const profileInsuranceDetails = this.saveServer.getProfile(sessionID).insurance; - this.logger.debug(`Found ${profileInsuranceDetails.length} insurance packages in profile ${sessionID}`); + this.logger.debug(`Found ${profileInsuranceDetails.length} insurance packages in profile ${sessionID}`, true); return profileInsuranceDetails.filter((insured) => insuranceTime >= insured.scheduledTime); }