File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,13 @@ bool gtwAWSS3::storeFile(
41
41
const QString &_path,
42
42
const QString &_fileName
43
43
) {
44
+ TargomanDebug (5 ) << " before gtwAWSS3::storeFile"
45
+ << endl
46
+ << " _fullFileName: " << _fullFileName
47
+ << " _path: " << _path
48
+ << " _fileName: " << _fileName
49
+ ;
50
+
44
51
// QString Bucket = _uploadGateway.ugwMetaInfo[AWSS3MetaInfoJsonKey::Bucket].toString();
45
52
// QString EndpointUrl = _uploadGateway.ugwMetaInfo[AWSS3MetaInfoJsonKey::EndpointUrl].toString();
46
53
@@ -93,6 +100,8 @@ bool gtwAWSS3::storeFile(
93
100
if (Outcome.IsSuccess () == false )
94
101
throw exTargomanBase (QString (" Could not save file to the s3 server: %1" ).arg (Outcome.GetError ().GetMessage ().c_str ()), ESTATUS_REQUEST_TIMEOUT);
95
102
103
+ TargomanDebug (5 ) << " after gtwAWSS3::storeFile" ;
104
+
96
105
return true ;
97
106
}
98
107
Original file line number Diff line number Diff line change @@ -358,7 +358,19 @@ bool ObjectStorageManager::processQueue(
358
358
.where ({ tblUploadQueue::Fields::uquID, enuConditionOperator::Equal, QueueInfo.UploadQueue .uquID })
359
359
.execute (_processQueueParams.CurrentUserID );
360
360
361
+ /* ***********************************************************************/
362
+ /* ***********************************************************************/
363
+ /* ***********************************************************************/
364
+ TargomanDebug (5 ) << " before ObjectStorageManager::storeFileToGateway"
365
+ << endl
366
+ << " fileID: " << QueueInfo.UploadFiles .uflID
367
+ << " queueID: " << QueueInfo.UploadQueue .uquID
368
+ ;
361
369
Stored = ObjectStorageManager::storeFileToGateway (_processQueueParams.APICALLBOOM_PARAM , QueueInfo);
370
+ TargomanDebug (5 ) << " after ObjectStorageManager::storeFileToGateway" ;
371
+ /* ***********************************************************************/
372
+ /* ***********************************************************************/
373
+ /* ***********************************************************************/
362
374
363
375
if (Stored)
364
376
_processQueueParams.UploadQueue .makeUpdateQuery (_processQueueParams.APICALLBOOM_PARAM )
You can’t perform that action at this time.
0 commit comments