Add more logging for test data api endpoint

This commit is contained in:
kolaente 2021-07-13 12:14:59 +02:00
parent 265e778867
commit 9559cbf1ec
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@ package v1
import (
"bytes"
"code.vikunja.io/api/pkg/log"
"encoding/json"
"net/http"
@ -52,6 +53,7 @@ func HandleTesting(c echo.Context) error {
content := []map[string]interface{}{}
err := json.Unmarshal(buf.Bytes(), &content)
if err != nil {
log.Errorf("Error replacing table data: %v", err)
return c.JSON(http.StatusInternalServerError, map[string]interface{}{
"error": true,
"message": err.Error(),
@ -66,6 +68,7 @@ func HandleTesting(c echo.Context) error {
}
if err != nil {
log.Errorf("Error replacing table data: %v", err)
return c.JSON(http.StatusInternalServerError, map[string]interface{}{
"error": true,
"message": err.Error(),