node-red / node-red/node-red-nodes
node.debug method
Open
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 1.1k
- Forks
- 612
- Avg merge
- 13h 57m
- Merged PRs (30d)
- 3
Description
We have current loggin methods for each node object (implemented in Node.js):
Node.prototype.log = function(msg) {
log_helper(this, Log.INFO, msg);
};
Node.prototype.warn = function(msg) {
log_helper(this, Log.WARN, msg);
};
How about debug?
Node.prototype.debug = function(msg) {
log_helper(this, Log.DEBUG, msg);
};
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Search the Node.js implementation for Node.prototype.log and Node.prototype.warn, then inspect how their shared logging helper uses Log levels. Add the requested debug entry point using Log.DEBUG and verify that node objects expose it consistently with the existing methods.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, node.js
- Domain
- backend
- Issue type
- Feature
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 52/100