Skip to content

Commit

Permalink
Updated README.md with logging setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Sureiya committed Nov 13, 2013
1 parent 9f04273 commit 658f2d1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,15 @@ python manage.py migrate django_clickbank
CLICKBANK_SECRET_KEY = <key generated in step 6>
```

8. Test it out.
8. Setup Logging **(Optional)**
```python
# settings.py
LOGGING['loggers']['django_clickbank.notications' = {
'handlers': ['console'], # Change handlers if you want. Logging levels are DEBUG and INFO
'propogate': True,
}
```
9. Test it out.

Usage
------
Expand Down

0 comments on commit 658f2d1

Please sign in to comment.