GET /rest/system/log

New in version 0.12.0.

Returns the list of recent log entries. The optional since parameter limits the results to message newer than the given timestamp in RFC 3339 format.

  1. {
  2. "messages": [
  3. {
  4. "when": "2014-09-18T12:59:26.549953186+02:00",
  5. "message": "This is a log entry"
  6. }
  7. ]
  8. }

GET /rest/system/log.txt

Returns the same information, formatted as a text log instead of a JSON object.