Fix log endpoint

This commit is contained in:
simon987 2020-07-05 10:03:53 -04:00
parent 5c25811561
commit 62f9ca4d4b
3 changed files with 17 additions and 1 deletions

View File

@ -20,6 +20,10 @@ func (r *Request) OkJson(object JsonResponse) {
handleErr(err, r)
}
func (r *Request) Ok() {
r.Ctx.Response.SetStatusCode(204)
}
func (r *Request) Json(object JsonResponse, code int) {
resp, err := json.Marshal(object)

View File

@ -70,6 +70,8 @@ func (api *WebAPI) LogTrace(r *Request) {
"scope": entry.Scope,
"worker": entry.worker.Id,
}).WithTime(entry.Time()).Trace(entry.Message)
r.Ok()
}
func (api *WebAPI) LogInfo(r *Request) {
@ -87,6 +89,8 @@ func (api *WebAPI) LogInfo(r *Request) {
"scope": entry.Scope,
"worker": entry.worker.Id,
}).WithTime(entry.Time()).Info(entry.Message)
r.Ok()
}
func (api *WebAPI) LogWarn(r *Request) {
@ -104,6 +108,8 @@ func (api *WebAPI) LogWarn(r *Request) {
"scope": entry.Scope,
"worker": entry.worker.Id,
}).WithTime(entry.Time()).Warn(entry.Message)
r.Ok()
}
func (api *WebAPI) LogError(r *Request) {
@ -121,6 +127,8 @@ func (api *WebAPI) LogError(r *Request) {
"scope": entry.Scope,
"worker": entry.worker.Id,
}).WithTime(entry.Time()).Error(entry.Message)
r.Ok()
}
func (api *WebAPI) GetLog(r *Request) {

View File

@ -176,7 +176,7 @@ func (c TaskTrackerClient) Log(level storage.LogLevel, message string) error {
case storage.WARN:
levelString = "warn"
case storage.INFO:
levelString = "panic"
levelString = "info"
case storage.TRACE:
levelString = "trace"
default:
@ -184,6 +184,10 @@ func (c TaskTrackerClient) Log(level storage.LogLevel, message string) error {
}
httpResp := c.post("/log/"+levelString, req)
if httpResp.StatusCode == http.StatusNoContent {
return nil
}
var jsonResp api.JsonResponse
err := unmarshalResponse(httpResp, &jsonResp)