Skip to content

Commit

Permalink
Added logging to get more info from test run on ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Mar 20, 2024
1 parent 3b44a78 commit 19af803
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Foundatio.Tests/Queue/InMemoryQueueTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
Expand Down Expand Up @@ -291,6 +291,8 @@ public override Task VerifyDelayedRetryAttemptsAsync()
[Fact]
public override Task CanHandleAutoAbandonInWorker()
{
Log.DefaultMinimumLevel = LogLevel.Trace;
Log.SetLogLevel<ScheduledTimer>(LogLevel.Trace);
return base.CanHandleAutoAbandonInWorker();
}

Expand Down

0 comments on commit 19af803

Please sign in to comment.