mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-12-23 23:23:06 +11:00
Added sentry logging
This commit is contained in:
parent
4b8c9fe1ef
commit
9d2ef6219c
2 changed files with 5 additions and 1 deletions
|
@ -106,6 +106,7 @@ INSTALLED_APPS = (
|
|||
'pastebin',
|
||||
'pastebin.apps.dpaste',
|
||||
'gunicorn',
|
||||
'raven.contrib.django',
|
||||
)
|
||||
|
||||
#==============================================================================
|
||||
|
@ -115,3 +116,5 @@ INSTALLED_APPS = (
|
|||
# How many recent snippets to save for every user? IDs of this snippets are
|
||||
# stored in the user session.
|
||||
MAX_SNIPPETS_PER_USER = 25
|
||||
|
||||
SENTRY_DSN = 'http://059a065b89384b9cbfca0917e5b1ba1d:96d3af5b9407448a94bedbe51c4f6677@178.79.156.5:9000/1'
|
|
@ -1,4 +1,5 @@
|
|||
django==1.3
|
||||
django-mptt==0.4.2
|
||||
django-piston==0.2.2
|
||||
pygments==1.4
|
||||
pygments==1.4
|
||||
raven
|
Loading…
Reference in a new issue