From bff6e8507f1822f366f7ca50a15c0d21f89e7ad3 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Tue, 8 Nov 2022 15:42:35 +0100 Subject: [PATCH] OZG-2737 OZG-2950 extend logging --- goofy-client/apps/goofy-e2e/src/plugins/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goofy-client/apps/goofy-e2e/src/plugins/index.js b/goofy-client/apps/goofy-e2e/src/plugins/index.js index 0ca7f20134..7d313ef7f1 100644 --- a/goofy-client/apps/goofy-e2e/src/plugins/index.js +++ b/goofy-client/apps/goofy-e2e/src/plugins/index.js @@ -229,7 +229,7 @@ function insertIntoUserManagerDatabase(config, collection, data){ function insert(databaseUrl, databaseName, collection, data){ MongoClient.connect(databaseUrl, (error, connection) => { - console.log('connect to database...') + console.log(`connect to ${databaseName} database with ${databaseUrl}`); if (!error) { console.log('success'); var db = connection.db(databaseName); -- GitLab