Closed kolkov closed 8 years ago
I builded a windows version of dalve and plugin that support it. But when I debugging my App, i don't see any values loaded into this struct...
func LoadConfig() *config.Config{ // Load config c := config.New() c.Load("conf/config.json") return c }
{ "Version": "1.0", "StaticServer": { "Path": "./static" }, "WebServer": { "PortHTTP": "8080", "PortHTTPS": "8088", "Domain": "localhost" }, "Logger": { "Filename": "app.log", "Email": "****@gmail.com" }, "Db":{ "Type": "mysql", "Host": "localhost", "DbName": "inframe", "Login": "root", "Password": "" } }
Are you see the same on Mac or more?
This is expected since Config stores the configuration content as a reflect.Value. I don't have a good solution to help inspect the loaded config content...
I think we need to call @ignatov to solve this.
I builded a windows version of dalve and plugin that support it. But when I debugging my App, i don't see any values loaded into this struct...
Are you see the same on Mac or more?