Debugging with Console & DevTools

What DevTools feature would help identify exactly where and when the user object was modified?
function processUser(user) {
  console.log(user);
  // Many lines of complex code
  updateUserEmail(user);
  // More complex code
  console.log(user); // Why did the email change here?
}
Next Question (13/40)