update error message.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2016-03-28 09:12:57 +08:00
parent c655a9bf07
commit 2e7255ccd1
2 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@ -27,3 +27,4 @@ gin-bin
key.pem
config.yaml
bin/*
.DS_Store

View File

@ -67,14 +67,15 @@ func LoadConfYaml(confPath string) (ConfYaml, error) {
configFile, err := ioutil.ReadFile(confPath)
if err != nil {
log.Printf("Unable to read config file '%s'", confPath)
log.Printf("Unable to read config file, path: '%s'", confPath)
return config, err
}
err = yaml.Unmarshal([]byte(configFile), &config)
if err != nil {
log.Printf("Unable to read config file '%v'", err)
log.Printf("Unable to Unmarshal config file '%s'", confPath)
return config, err
}