Improved logging message

This commit is contained in:
Chomp
2025-01-28 15:21:32 +00:00
parent 5226212b0d
commit ae7042dcc3
@@ -296,7 +296,7 @@ public class ProfileFixerService(
if (!quests.ContainsKey(profileQuests[i].QId) || activeRepeatableQuests.Any((x) => x.Id == profileQuests[i].QId))
{
profileQuests.RemoveAt(i);
_logger.Success("Successfully removed orphaned quest that doesn't exist in quest data");
_logger.Info($"Successfully removed orphaned quest: {profileQuests[i].QId} that doesn't exist in quest data");
}
}
}