diff --git a/src/BirdsiteLive.Pipeline/Processors/SendTweetsToFollowersProcessor.cs b/src/BirdsiteLive.Pipeline/Processors/SendTweetsToFollowersProcessor.cs index 49e3bdb..9cfac79 100644 --- a/src/BirdsiteLive.Pipeline/Processors/SendTweetsToFollowersProcessor.cs +++ b/src/BirdsiteLive.Pipeline/Processors/SendTweetsToFollowersProcessor.cs @@ -63,7 +63,8 @@ namespace BirdsiteLive.Pipeline.Processors .ToList(); await ProcessFollowersWithInboxAsync(userWithTweetsToSync.Tweets, followerWtInbox, user); - _logger.LogInformation("Done sending " + userWithTweetsToSync.Tweets.Length + "tweets for user " + userWithTweetsToSync.User.Acct); + _logger.LogInformation("Done sending " + userWithTweetsToSync.Tweets.Length + " tweets for " + + userWithTweetsToSync.Followers.Length + "followers for user " + userWithTweetsToSync.User.Acct); }, ct); _todo.Add(t); diff --git a/src/BirdsiteLive.Pipeline/Processors/SubTasks/SendTweetsToSharedInboxTask.cs b/src/BirdsiteLive.Pipeline/Processors/SubTasks/SendTweetsToSharedInboxTask.cs index f66eeab..87966c4 100644 --- a/src/BirdsiteLive.Pipeline/Processors/SubTasks/SendTweetsToSharedInboxTask.cs +++ b/src/BirdsiteLive.Pipeline/Processors/SubTasks/SendTweetsToSharedInboxTask.cs @@ -43,7 +43,6 @@ namespace BirdsiteLive.Pipeline.Processors.SubTasks var tweetsToSend = tweets .OrderBy(x => x.Id) .ToList(); - _logger.LogInformation("After filtering, there were " + tweetsToSend.Count() + " tweets left to send"); foreach (var tweet in tweetsToSend) {