rez_core 3.1.175 → 3.1.177

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.175",
3
+ "version": "3.1.177",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -384,8 +384,6 @@ export class WrapperService {
384
384
  `Generating ICS file. Payload: ${JSON.stringify(payload)}`,
385
385
  );
386
386
 
387
- this.logger.log(payload);
388
-
389
387
  if (payload.template_code) {
390
388
  let templates = await this.datasource.query(
391
389
  `SELECT id FROM cr_wf_comm_template
@@ -394,7 +392,7 @@ export class WrapperService {
394
392
  LIMIT 1`,
395
393
  [payload.template_code],
396
394
  );
397
- this.logger.log(templates);
395
+ this.logger.log(`template by code ${JSON.stringify(payload)}`);
398
396
  if (templates && templates.length > 0) {
399
397
  payload['templateId'] = templates[0].id;
400
398
  }