rez_core 3.1.174 → 3.1.175

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "3.1.174",
3
+ "version": "3.1.175",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -384,6 +384,8 @@ export class WrapperService {
384
384
  `Generating ICS file. Payload: ${JSON.stringify(payload)}`,
385
385
  );
386
386
 
387
+ this.logger.log(payload);
388
+
387
389
  if (payload.template_code) {
388
390
  let templates = await this.datasource.query(
389
391
  `SELECT id FROM cr_wf_comm_template
@@ -392,7 +394,7 @@ export class WrapperService {
392
394
  LIMIT 1`,
393
395
  [payload.template_code],
394
396
  );
395
-
397
+ this.logger.log(templates);
396
398
  if (templates && templates.length > 0) {
397
399
  payload['templateId'] = templates[0].id;
398
400
  }