Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc committed Feb 2, 2022
1 parent 2687875 commit 5181a2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cs/remote/samples/FixedLenServer/Types.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void UpsertCompletionCallback(ref Key key, ref Input input, ref Value val
public void DeleteCompletionCallback(ref Key key, long ctx) { }

public void CheckpointCompletionCallback(int sessionID, string sessionName, CommitPoint commitPoint)
=> Debug.WriteLine("Session {0} reports persistence until {1}", sessionID, commitPoint.UntilSerialNo);
=> Debug.WriteLine($"Session {sessionID} ({(sessionName ?? "null")}) reports persistence until {commitPoint.UntilSerialNo}");

// Read functions
[MethodImpl(MethodImplOptions.AggressiveInlining)]
Expand Down

0 comments on commit 5181a2c

Please sign in to comment.