add log line online/offline to enqueuing

This commit is contained in:
Stanley Dimant
2022-10-09 14:53:14 +02:00
parent b5325b9c50
commit 46d851b9f0

View File

@@ -146,7 +146,7 @@ internal class IdentityService : IdentificationService.IdentificationServiceBase
private void EnqueueIdentChange(IdentChange identchange)
{
_logger.LogInformation("Enqueued " + identchange.UidWithIdent.Uid.Uid + " from " + identchange.UidWithIdent.Ident.ServerId);
_logger.LogInformation("Enqueued " + identchange.UidWithIdent.Uid.Uid + ":" + identchange.IsOnline + " from " + identchange.UidWithIdent.Ident.ServerId);
foreach (var dict in identChanges.Where(k => k.Key != identchange.UidWithIdent.Ident.ServerId))
{