summaryrefslogtreecommitdiffstats
path: root/store/sqlstore/command_webhook_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sqlstore/command_webhook_store.go')
-rw-r--r--store/sqlstore/command_webhook_store.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/store/sqlstore/command_webhook_store.go b/store/sqlstore/command_webhook_store.go
index 40fa8577c..1ea4f7328 100644
--- a/store/sqlstore/command_webhook_store.go
+++ b/store/sqlstore/command_webhook_store.go
@@ -7,8 +7,7 @@ import (
"database/sql"
"net/http"
- l4g "github.com/alecthomas/log4go"
-
+ "github.com/mattermost/mattermost-server/mlog"
"github.com/mattermost/mattermost-server/model"
"github.com/mattermost/mattermost-server/store"
)
@@ -86,9 +85,9 @@ func (s SqlCommandWebhookStore) TryUse(id string, limit int) store.StoreChannel
}
func (s SqlCommandWebhookStore) Cleanup() {
- l4g.Debug("Cleaning up command webhook store.")
+ mlog.Debug("Cleaning up command webhook store.")
exptime := model.GetMillis() - model.COMMAND_WEBHOOK_LIFETIME
if _, err := s.GetMaster().Exec("DELETE FROM CommandWebhooks WHERE CreateAt < :ExpTime", map[string]interface{}{"ExpTime": exptime}); err != nil {
- l4g.Error("Unable to cleanup command webhook store.")
+ mlog.Error("Unable to cleanup command webhook store.")
}
}