Skip to content

Commit 70d7327

Browse files
committed
More information to console
1 parent bcd881d commit 70d7327

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/LinkDotNet.Blog.Web/Features/BlogPostPublisher.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ private async Task PublishScheduledBlogPosts()
4343
using var scope = serviceProvider.CreateScope();
4444
var repository = scope.ServiceProvider.GetRequiredService<IRepository<BlogPost>>();
4545

46-
var now = DateTime.UtcNow;
46+
var now = DateTime.Now;
4747
var scheduledBlogPosts = await repository.GetAllAsync(
4848
filter: b => b.ScheduledPublishDate != null && b.ScheduledPublishDate <= now);
4949

50+
logger.LogInformation("Found {Count} scheduled blog posts.", scheduledBlogPosts.Count);
51+
5052
foreach (var blogPost in scheduledBlogPosts)
5153
{
5254
blogPost.Publish();

0 commit comments

Comments
 (0)