Skip to content

Commit

Permalink
Simplify the Session Log in updateExistingSession (#19665)
Browse files Browse the repository at this point in the history
This fix is used to simplify the log by reducing its length to only
include information from each session with a smaller string length.
  • Loading branch information
tianzhu007 authored Feb 16, 2024
1 parent 32cfa09 commit cf99a73
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ async function updateExistingSession(
},
);
Lumberjack.info(
`The original document in updateExistingSession: ${JSON.stringify(result)}`,
`The original document session in updateExistingSession: ${JSON.stringify(
result?.value?.session,
)}`,
lumberjackProperties,
);
// There is no document with isSessionAlive as false. It means this session has been discovered by
Expand Down

0 comments on commit cf99a73

Please sign in to comment.