commit dbab7b33adb146e3272b51333b0a05eefa8a27bb
parent b71aa4ca885c55f36822a76e06afc58785cb2a1b
Author: Joel-Haeberli <haebu@rubigen.ch>
Date: Thu, 30 May 2024 09:01:20 +0200
chore: config
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/c2ec/config.go b/c2ec/config.go
@@ -220,12 +220,14 @@ func ParseIni(content []byte) (*C2ECConfig, error) {
return nil, err
}
cfg.Server.WireGateway.Username = value.String()
+ LogInfo("config", "Wire Gateway Username: "+cfg.Server.WireGateway.Username)
value, err = s.GetKey("PASSWORD")
if err != nil {
return nil, err
}
cfg.Server.WireGateway.Password = value.String()
+ LogInfo("config", "Wire Gateway Password: "+cfg.Server.WireGateway.Password)
}
if s.Name() == "database" {