Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
#591 note in contribution guidelines about logging
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhers committed May 28, 2016
1 parent 48af41f commit 685c803
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ Universally formatted code is crucial in open source projects and promotes ease



**Logging**

Do not use `print` for messages in Python code! Instead, use the `logging` class.
Remember that log messages are very helpful for debugging server issues, so add as much information as you can.



**Unit Tests**

All unit tests can be found in the "tests" folder. When adding a new test, make sure you follow this pattern: `test_*.py` (e.g.: `test_bounding_box_query.py`).
Expand Down

0 comments on commit 685c803

Please sign in to comment.