This commit is contained in:
CWX
2025-01-24 18:18:59 +00:00
2 changed files with 3 additions and 3 deletions
@@ -178,7 +178,7 @@ public class HealthController(
break;
default:
_logger.Warning($"Unhandled effect after consuming: ${itemToConsume.Template}, ${key}");
_logger.Warning($"Unhandled effect after consuming: {itemToConsume.Template}, {key}");
break;
}
@@ -101,7 +101,7 @@ public class InsuranceController(
protected void ProcessInsuredItems(List<Insurance> insuranceDetails, string sessionId)
{
_logger.Debug(
$"Processing {insuranceDetails.Count} insurance packages, which includes a total of ${CountAllInsuranceItems(insuranceDetails)} items, in profile ${sessionId}"
$"Processing {insuranceDetails.Count} insurance packages, which includes a total of: {CountAllInsuranceItems(insuranceDetails)} items, in profile: {sessionId}"
);
// Iterate over each of the insurance packages.
@@ -697,7 +697,7 @@ public class InsuranceController(
foreach (var softInsertSlot in softInsertSlots)
{
_logger.Debug($"SoftInsertSlots: ${softInsertSlot.SlotId}");
_logger.Debug($"SoftInsertSlots: {softInsertSlot.SlotId}");
pmcData.InsuredItems.Add(new InsuredItem { TId = body.TransactionId, ItemId = softInsertSlot.Id });
}
}