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 authored and ReubenBond committed Nov 30, 2023
1 parent 96c61ce commit d9cb9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orleans.Runtime/Silo/Silo.cs
Expand Up @@ -602,7 +602,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 d9cb9b5

Please sign in to comment.