Added debug information regarding minions
This commit is contained in:
@@ -21,28 +21,50 @@ public sealed record PairDebugInfo(
|
||||
bool ModApplyDeferred,
|
||||
int MissingCriticalMods,
|
||||
int MissingNonCriticalMods,
|
||||
int MissingForbiddenMods)
|
||||
int MissingForbiddenMods,
|
||||
|
||||
string? MinionAddressHex,
|
||||
ushort? MinionObjectIndex,
|
||||
DateTime? MinionResolvedAtUtc,
|
||||
string? MinionResolveStage,
|
||||
string? MinionResolveFailureReason,
|
||||
bool MinionPendingRetry,
|
||||
IReadOnlyList<string> MinionPendingRetryChanges,
|
||||
bool MinionHasAppearanceData,
|
||||
Guid OwnedPenumbraCollectionId,
|
||||
bool NeedsCollectionRebuild)
|
||||
{
|
||||
public static PairDebugInfo Empty { get; } = new(
|
||||
false,
|
||||
false,
|
||||
false,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
Array.Empty<string>(),
|
||||
false,
|
||||
false,
|
||||
0,
|
||||
0,
|
||||
false,
|
||||
false,
|
||||
0,
|
||||
0,
|
||||
0);
|
||||
HasHandler: false,
|
||||
HandlerInitialized: false,
|
||||
HandlerVisible: false,
|
||||
HandlerScheduledForDeletion: false,
|
||||
LastDataReceivedAt: null,
|
||||
LastApplyAttemptAt: null,
|
||||
LastSuccessfulApplyAt: null,
|
||||
InvisibleSinceUtc: null,
|
||||
VisibilityEvictionDueAtUtc: null,
|
||||
VisibilityEvictionRemainingSeconds: null,
|
||||
LastFailureReason: null,
|
||||
BlockingConditions: [],
|
||||
IsApplying: false,
|
||||
IsDownloading: false,
|
||||
PendingDownloadCount: 0,
|
||||
ForbiddenDownloadCount: 0,
|
||||
PendingModReapply: false,
|
||||
ModApplyDeferred: false,
|
||||
MissingCriticalMods: 0,
|
||||
MissingNonCriticalMods: 0,
|
||||
MissingForbiddenMods: 0,
|
||||
|
||||
MinionAddressHex: null,
|
||||
MinionObjectIndex: null,
|
||||
MinionResolvedAtUtc: null,
|
||||
MinionResolveStage: null,
|
||||
MinionResolveFailureReason: null,
|
||||
MinionPendingRetry: false,
|
||||
MinionPendingRetryChanges: [],
|
||||
MinionHasAppearanceData: false,
|
||||
OwnedPenumbraCollectionId: Guid.Empty,
|
||||
NeedsCollectionRebuild: false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user