diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-11-07 19:00:30 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-11-07 19:01:38 +0100 |
commit | 55179decb79c7bf02662b8287efdd948cf006e94 (patch) | |
tree | 943d0fa683f092b39c1e306f133311b071794093 | |
parent | 1fd62a4850f6e1cb16fb7c333d884660fb08d75b (diff) |
provide a bit more information in the logs to identify the error
-rw-r--r-- | src/client.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/client.c b/src/client.c index 817a9c0..7e787e4 100644 --- a/src/client.c +++ b/src/client.c @@ -1120,14 +1120,16 @@ static int og_resp_image_create(json_t *data, struct og_client *cli) soft_legacy.center); if (!res) { og_dbi_close(dbi); - syslog(LOG_ERR, "Problem updating client configuration\n"); + syslog(LOG_ERR, "Problem updating software inventory (%s:%u)\n", + __FILE__, __LINE__); return -1; } res = og_dbi_update_image(dbi, &img_legacy, soft_legacy.id); if (!res) { og_dbi_close(dbi); - syslog(LOG_ERR, "Problem updating client configuration\n"); + syslog(LOG_ERR, "Problem updating image (%s:%u)\n", + __FILE__, __LINE__); return -1; } @@ -1137,7 +1139,8 @@ static int og_resp_image_create(json_t *data, struct og_client *cli) og_dbi_close(dbi); if (res) { - syslog(LOG_ERR, "Problem updating image info\n"); + syslog(LOG_ERR, "Problem updating image (%s:%u)\n", + __FILE__, __LINE__); return -1; } |