Skip to content

Commit

Permalink
refactor: πŸ”„ remove error logging from XMLTryParse
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Nov 1, 2024
1 parent a0373a4 commit 6d0f342
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/core/src/xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ export function XMLTryParse(
// Try parsing the text and return the result or defaultValue
return XMLParse(text, options) ?? defaultValue
} catch (e) {
// Log any errors during parsing
logError(e)
// Return the default value if parsing fails
return defaultValue
}
Expand Down

0 comments on commit 6d0f342

Please sign in to comment.