blob: 71bde6caba39812deebcfc3293a00f7aaef63b32 [file] [log] [blame]
package rocketmq
import "fmt"
func strJoin(str, key string, value interface{}) string {
if key == "" || value == "" {
return str
}
return str + key + ": " + fmt.Sprint(value) + ", "
}