File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
hedera-microprofile/src/test/java/com/openelements/hedera/microprofile/test Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 55import java .util .Map ;
66import java .util .Set ;
77import org .eclipse .microprofile .config .spi .ConfigSource ;
8+ import org .slf4j .Logger ;
9+ import org .slf4j .LoggerFactory ;
810
911public class TestConfigSource implements ConfigSource {
1012
13+ private final static Logger log = LoggerFactory .getLogger (TestConfigSource .class );
14+
1115 private final Map <String , String > properties ;
1216
1317 public TestConfigSource () {
@@ -39,9 +43,8 @@ public TestConfigSource() {
3943 }
4044 } else {
4145 properties .put ("hiero.network.name" , Dotenv .load ().get ("hedera.network.name" ));
42- properties .put ("hiero.network.nodes" , "127.0.0.1:50211:0.0.3" );
43- properties .put ("hiero.network.mirrornode" , "http://localhost:8080" );
4446 }
47+ properties .forEach ((k , v ) -> log .info ("CONFIG: '" + k + "'->'" + v + "'" ));
4548 }
4649
4750 @ Override
You can’t perform that action at this time.
0 commit comments