diff --git a/business/jxstore/cms/sku.go b/business/jxstore/cms/sku.go index 2a88d7dc7..3d8ae2d33 100644 --- a/business/jxstore/cms/sku.go +++ b/business/jxstore/cms/sku.go @@ -741,6 +741,7 @@ func IsSensitiveWordInList(str string) (bool, string) { for index > 0 { index = strings.Index(keyWord, ",") keyWord = keyWord[:index-1] + globals.SugarLogger.Debug("keyWord", keyWord) checkHas := strings.Contains(str, keyWord) if checkHas { return true, keyWord