@adaptivestone/framework 3.0.10 → 3.0.11

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 3.0.11
2
+
3
+ [UPDATE] more verbose email error
4
+
1
5
  ### 3.0.10
2
6
 
3
7
  [UPDATE] update deps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptivestone/framework",
3
- "version": "3.0.10",
3
+ "version": "3.0.11",
4
4
  "description": "Adaptive stone node js framework",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -32,7 +32,9 @@ class Mail extends Base {
32
32
  this.template = `${__dirname}/templates/${path.basename(template)}`;
33
33
  } else {
34
34
  this.template = `${__dirname}/templates/emptyTemplate`;
35
- this.logger.error('not found');
35
+ this.logger.error(
36
+ `Template '${template}' not found. Using 'emptyTemplate' as a fallback`,
37
+ );
36
38
  }
37
39
  }
38
40
  this.templateData = templateData;