summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-06-19 08:09:35 -0400
committerJoramWilander <jwawilander@gmail.com>2015-06-19 08:09:35 -0400
commitd86401a0197b8ce8c30d7e1e4e76a5b348ae9b13 (patch)
treeaef9488a0995e9361612cb257df255716ea4f663 /api
parentf16fd439dde5d4be628faaee1018866eee258fce (diff)
downloadchat-d86401a0197b8ce8c30d7e1e4e76a5b348ae9b13.tar.gz
chat-d86401a0197b8ce8c30d7e1e4e76a5b348ae9b13.tar.bz2
chat-d86401a0197b8ce8c30d7e1e4e76a5b348ae9b13.zip
remove logging
Diffstat (limited to 'api')
-rw-r--r--api/post.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/api/post.go b/api/post.go
index f8125a442..0e521034d 100644
--- a/api/post.go
+++ b/api/post.go
@@ -306,7 +306,6 @@ func fireAndForgetNotifications(post *model.Post, teamId, teamUrl string) {
}
splitMessage := strings.FieldsFunc(strings.Replace(post.Message, "<br>", " ", -1), splitF)
for _, word := range splitMessage {
- l4g.Debug(word)
// Non-case-sensitive check for regular keys
userIds1, keyMatch := keywordMap[strings.ToLower(word)]