Minor tweaks (logs, exceptions)

This commit is contained in:
Eliot Berriot 2018-03-31 18:41:53 +02:00
parent 741ab533b1
commit 3650c3699b
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
2 changed files with 9 additions and 1 deletions

View File

@ -72,6 +72,10 @@ LOGGING = {
'handlers':['console'],
'propagate': True,
'level':'DEBUG',
}
},
'': {
'level': 'DEBUG',
'handlers': ['console'],
},
},
}

View File

@ -2,3 +2,7 @@
class MalformedPayload(ValueError):
pass
class MissingSignature(KeyError):
pass