From: norbert.bizet Date: Fri, 19 May 2023 12:46:46 +0000 (-0400) Subject: s3_driver: Fix #10130 Add debug to S3 driver X-Git-Tag: Beta-15.0.0~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cda180cf87ac05c14515effc22f4ad4f8cb5b262;p=thirdparty%2Fbacula.git s3_driver: Fix #10130 Add debug to S3 driver --- diff --git a/bacula/src/stored/s3_driver.c b/bacula/src/stored/s3_driver.c index d9f7fbe75..b592b8e87 100644 --- a/bacula/src/stored/s3_driver.c +++ b/bacula/src/stored/s3_driver.c @@ -356,7 +356,7 @@ static void responseCompleteCallback( if ((status != S3StatusOK) && ctx->errMsg) { POOL_MEM tmp; - Mmsg(tmp, " %s ERR=%s", ctx->caller, msg); + Mmsg(tmp, " %s %s ERR=%s", ctx->caller, S3Errors[status], msg); pm_strcat(ctx->errMsg, tmp); if (oops->furtherDetails) { pm_strcat(ctx->errMsg, " ");