@codefresh-io/service-base 4.0.6 → 4.0.7

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.
Files changed (2) hide show
  1. package/infra/mongo.js +1 -2
  2. package/package.json +1 -1
package/infra/mongo.js CHANGED
@@ -22,10 +22,9 @@ class Mongo {
22
22
 
23
23
  const logger = require('cf-logs').Logger('codefresh:infra:mongo'); // eslint-disable-line
24
24
  this.logger = logger;
25
- logger.info(`Mongo got config ${JSON.stringify(config.mongo)}`);
25
+
26
26
  const { uri } = config.mongo;
27
27
  const dbName = config.mongo.dbName || getDbNameFromUri(uri);
28
- logger.info(`Use Uri ${uri} settings ${JSON.stringify(clientSettings)}, the dbName is ${dbName}`);
29
28
  return MongoClient.connect(uri, clientSettings)
30
29
  .then(async (client) => {
31
30
  this.client = client;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codefresh-io/service-base",
3
- "version": "4.0.6",
3
+ "version": "4.0.7",
4
4
  "main": "index.js",
5
5
  "description": "",
6
6
  "bin": {