Expose API to view error log

This commit is contained in:
Paulus Schoutsen 2015-11-07 01:44:02 -08:00
parent 3e339c7304
commit e4c3d47dbf
3 changed files with 17 additions and 3 deletions

View file

@ -151,6 +151,7 @@ URL_API_SERVICES_SERVICE = "/api/services/{}/{}"
URL_API_EVENT_FORWARD = "/api/event_forwarding"
URL_API_COMPONENTS = "/api/components"
URL_API_BOOTSTRAP = "/api/bootstrap"
URL_API_ERROR_LOG = "/api/error_log"
HTTP_OK = 200
HTTP_CREATED = 201
@ -173,3 +174,4 @@ HTTP_HEADER_EXPIRES = "Expires"
CONTENT_TYPE_JSON = "application/json"
CONTENT_TYPE_MULTIPART = 'multipart/x-mixed-replace; boundary={}'
CONTENT_TYPE_TEXT_PLAIN = 'text/plain'