1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 00:43:27 +00:00

Merge pull request #139 from WnP/logfmt

fix typo and missing end-of-line
This commit is contained in:
astaxie 2015-11-10 10:40:59 +08:00
commit 755eaad4fe

View File

@ -48,12 +48,12 @@ func generateSQLFromFields(fields string) string {
for i, v := range fds {
kv := strings.SplitN(v, ":", 2)
if len(kv) != 2 {
ColorLog("[ERRO] the filds format is wrong. should key:type,key:type " + v)
ColorLog("[ERRO] the fields format is wrong. should key:type,key:type " + v + "\n")
return ""
}
typ, tag := getSqlType(kv[1])
if typ == "" {
ColorLog("[ERRO] the filds format is wrong. should key:type,key:type " + v)
ColorLog("[ERRO] the fields format is wrong. should key:type,key:type " + v + "\n")
return ""
}
if i == 0 && strings.ToLower(kv[0]) != "id" {