We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a852ce2 commit ea44d51Copy full SHA for ea44d51
utils/config/loader.go
@@ -8,6 +8,7 @@ import (
8
"strings"
9
10
middlewareTypes "github.com/codeshelldev/secured-signal-api/internals/proxy/middlewares/types"
11
+ "github.com/codeshelldev/secured-signal-api/utils"
12
log "github.com/codeshelldev/secured-signal-api/utils/logger"
13
"github.com/knadh/koanf/parsers/yaml"
14
)
@@ -90,6 +91,8 @@ func Load() {
90
91
InitEnv()
92
93
log.Info("Finished Loading Configuration")
94
+
95
+ log.Dev(utils.ToJson(config.All()))
96
}
97
98
func LoadDefaults() {
0 commit comments