Debugging with Console & DevTools

Which DevTools feature is most helpful for debugging this asynchronous function?
function getUserData() {
  return fetch('/api/user')
    .then(response => response.json())
    .then(data => processUserData(data))
    .catch(error => console.error('Failed to get user data', error));
}
Next Question (25/40)