Skip to content

Commit 05189a0

Browse files
committed
change warning to infromational
1 parent 232571f commit 05189a0

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/DurableTask.ServiceBus/ServiceBusOrchestrationService.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1599,11 +1599,10 @@ async Task<OrchestrationRuntimeState> GetSessionStateAsync(IMessageSession sessi
15991599
if (state == null || state.Length == 0)
16001600
{
16011601
TraceHelper.TraceSession(
1602-
TraceEventType.Warning,
1602+
TraceEventType.Information,
16031603
"ServiceBusOrchestrationService-GetSessionState-EmptyState",
16041604
session.SessionId,
1605-
$"Session '{session.SessionId}' has null or empty state ({state?.Length ?? 0} bytes). " +
1606-
"This may indicate a new session or a ghost session created by a session ID casing change.");
1605+
$"Session '{session.SessionId}' has null or empty state ({state?.Length ?? 0} bytes).");
16071606
}
16081607

16091608
using (Stream rawSessionStream = state != null ? new MemoryStream(state) : null)

0 commit comments

Comments
 (0)