Skip to content

Commit

Permalink
Update to new logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Mar 24, 2024
1 parent d8a0561 commit 60e1ec7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
5 changes: 0 additions & 5 deletions FlexibleContactsSort/FlexibleContactSorting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ private static int CalculateOrderScore(ContactItem contactItem)
score += (IsHeadlessHost(contactItem) ? 1 : 0) * ConfigSection.HeadlessPriority;
score += GetOnlineStatusOrder(contactItem) * ConfigSection.OnlineStatusPriority;

if (_contactIds.TryGetValue(contactItem, out var oldId) && oldId != contact.ContactUserId)
{
Debug(() => $"ContactItem UserId changed from {oldId} to {contact.ContactUserId}!");
}

return score;
}

Expand Down
6 changes: 2 additions & 4 deletions FlexibleContactsSort/FlexibleContactsSort.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MonkeyLoader" Version="0.5.0-beta" />
<PackageReference Include="MonkeyLoader.GamePacks.Resonite" Version="0.4.0-beta" />
<PackageReference Include="MonkeyLoader" Version="0.9.0-beta" />
<PackageReference Include="MonkeyLoader.GamePacks.Resonite" Version="0.6.0-beta" />
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Resonite.Elements.Core" Version="1.0.2" />
<PackageReference Include="Resonite.FrooxEngine" Version="2024.3.3.1178" />
<PackageReference Include="Resonite.SkyFrost.Base" Version="1.0.2" />
<PackageReference Include="System.Text.Json" Version="8.0.2">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 60e1ec7

Please sign in to comment.