Skip to content

Commit

Permalink
Added some test string
Browse files Browse the repository at this point in the history
In the configurations printing database names to be connected to.
  • Loading branch information
deoyani committed Nov 7, 2024
1 parent 90f5f40 commit 390fd52
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public class MetricsMongoConfig {
public void initIt() throws Exception {

mongoClient = (MongoClient) this.mongo();
log.info("########## " + metricsdbname + " ########");
log.info("########## Metrics databasenaem:" + metricsdbname + " ########");

this.setMongodb(this.metricsdbname);

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gov/nist/oar/rmm/config/MongoConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public class MongoConfig {
public void initIt() throws Exception {

mongoClient = (MongoClient) this.mongo();
log.info("########## " + dbname + " ########");
log.info("########## Records database name:" + dbname + " ########");

this.setMongodb(this.dbname);
this.setRecordCollection(this.record);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
package gov.nist.oar.rmm.repositories.impl;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
Expand Down

0 comments on commit 390fd52

Please sign in to comment.