Skip to content

Commit

Permalink
Fix exception caused by a log message (dotnet#8558)
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-perot committed Nov 2, 2023
1 parent 4dcf6d8 commit 3e0b977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orleans.Runtime/Silo/Silo.cs
Expand Up @@ -612,7 +612,7 @@ await grainService
logger.LogDebug(
"{GrainServiceType} Grain Service with Id {GrainServiceId} stopped successfully.",
grainService.GetType().FullName,
grainService.GetPrimaryKeyLong(out string ignored));
grainService.GetGrainId().ToString());
}
}
}
Expand Down

0 comments on commit 3e0b977

Please sign in to comment.