46 - add console as a logger #50
No reviewers
Labels
No labels
bug
dependencies
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
openrn/react-native-logging-tools!50
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "46-add-console-as-a-logger"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I'll read the PR template and fill it out based on the current branch changes.## Description
This PR adds support for console logging by introducing a new
createConsoleLoggerfunction. This logger outputs formatted log messages directly to the JavaScript console usingconsole.log,console.warn,console.error, andconsole.debugmethods. It's particularly useful for development environments where React Native debuggers or browser developer tools are attached.The PR also removes the CHANGELOG.md file in favor of using the releases tab for version history tracking.
Type of Change
Related Issue
Fixes #46
Testing
Breaking Changes
N/A - This is a non-breaking additive change. The new
createConsoleLoggerfunction is optional and does not affect existing functionality.Checklist
createConsoleLoggerimplementation 5aaa15ba5acreateConsoleLoggerfunctionalitycreateConsoleLoggerusage and guidelines.