@adaptivestone/framework 5.0.0-beta.2 → 5.0.0-beta.3

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.
@@ -19,7 +19,7 @@ class AbstractCommand extends Base {
19
19
  /**
20
20
  * Get mongo connection name
21
21
  * @param {String} commandName
22
- * @param {array} args
22
+ * @param {object} args
23
23
  * @returns string
24
24
  */
25
25
  static getMongoConnectionName(commandName, args) {
@@ -46,7 +46,9 @@ class AbstractModel extends Base {
46
46
  .connect(this.app.getConfig('mongo').connectionString, connectionParams)
47
47
  .then(
48
48
  () => {
49
- this.logger.info('Mongo connection success');
49
+ this.logger.info(
50
+ `Mongo connection success ${connectionParams.appName}`,
51
+ );
50
52
 
51
53
  callback();
52
54
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptivestone/framework",
3
- "version": "5.0.0-beta.2",
3
+ "version": "5.0.0-beta.3",
4
4
  "description": "Adaptive stone node js framework",
5
5
  "main": "index.js",
6
6
  "type": "module",