tweak logging

This commit is contained in:
Vincent Cloutier 2023-03-25 15:44:42 -04:00
parent 46be9552e9
commit f631e922bc
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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)
{