Thanks for choosing log4js2 as your choice of logger. We would love for you to contribute to log4js2 and help make it better. As a contributor, here are the guidelines we would like you to follow:
There are several ways how you can ask your question:
- You can create a question on StackOverflow where the questions should be tagged with tag
log4js2
. - You can create issue on github
If you find a bug in the source code, you can help us by submitting an issue to our GitHub Repository, or you can submit a Pull Request with a fix.
You can request a new feature by submitting an issue to the GitHub Repository. If you would like to implement a new feature, please submit an issue with a proposal for your work first, to be sure that it can be used. Please consider what kind of change it is:
- For a Major Feature, first open an issue and outline your proposal so that it can be discussed. This will also allow us to better coordinate our efforts, prevent duplication of work, and help you to craft the change so that it is successfully accepted into the project.
- Small Features can be crafted and directly submitted as a Pull Request.
Before you submit an issue, please search the issue tracker to see if an issue for your problem already exists. The discussion might inform you of solutions, workarounds, or future releases.
Before fixing a bug, we need to reproduce and confirm it. In order to reproduce bugs we ask you to provide a code snippet that shows a reproduction of the problem.
You can file new issues by filling out our new issue form.
Before you submit your Pull Request (PR) consider the following guidelines:
-
Search GitHub for an open or closed PR that relates to your submission to prevent duplicate submission.
-
Make your changes in a new git branch:
git checkout -b fix-branch master
-
Create your patch, including appropriate test cases. Without tests your PR will not be accepted.
-
Run the full test suite and ensure that all tests pass.
npm test
-
Commit your changes using a descriptive commit message
git commit -a
-
Push your branch to GitHub:
git push origin fix-branch
-
In GitHub, send a pull request to
log4js2:master
. -
If we suggest changes then:
-
Make the required updates.
-
Re-run the log4js2 test suites to ensure tests are still passing.
-
Rebase your branch and force push to your GitHub repository (this will update your Pull Request):
git rebase master -i git push -f
-
After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:
-
Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:
git push origin --delete fix-branch
-
Check out the master branch:
git checkout master -f
-
Delete the local branch:
git branch -D fix-branch
-
Update your master with the latest upstream version:
git pull --ff upstream master
If you would like to contribute (aka buy me a beer), you can send funds via PayPal at the link below.