1
0
mirror of https://github.com/beego/bee.git synced 2024-05-29 03:53:29 +00:00

output error

This commit is contained in:
astaxie 2016-11-10 16:51:50 +08:00
parent f7001294a9
commit 04c0f9d7b4

View File

@ -110,7 +110,7 @@ func parsePackageFromDir(path string) {
}, parser.ParseComments) }, parser.ParseComments)
if err != nil { if err != nil {
ColorLog("[ERRO] the model %s parser.ParseDir error\n", path) ColorLog("[ERRO] the model %s parser.ParseDir error: %s\n", path, err)
os.Exit(1) os.Exit(1)
} }
for k, v := range folderPkgs { for k, v := range folderPkgs {
@ -357,7 +357,7 @@ func analisyscontrollerPkg(localName, pkgpath string) {
}, parser.ParseComments) }, parser.ParseComments)
if err != nil { if err != nil {
ColorLog("[ERRO] the %s pkg parser.ParseDir error\n", pkgpath) ColorLog("[ERRO] the %s pkg parser.ParseDir error: %s\n", pkgpath, err)
os.Exit(1) os.Exit(1)
} }
for _, pkg := range astPkgs { for _, pkg := range astPkgs {