summaryrefslogtreecommitdiffstats
path: root/api4/openGraph.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/openGraph.go')
-rw-r--r--api4/openGraph.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/api4/openGraph.go b/api4/openGraph.go
index c552b54d9..646cce883 100644
--- a/api4/openGraph.go
+++ b/api4/openGraph.go
@@ -6,7 +6,6 @@ package api4
import (
"net/http"
- l4g "github.com/alecthomas/log4go"
"github.com/mattermost/mattermost-server/model"
"github.com/mattermost/mattermost-server/utils"
)
@@ -16,8 +15,6 @@ const OPEN_GRAPH_METADATA_CACHE_SIZE = 10000
var openGraphDataCache = utils.NewLru(OPEN_GRAPH_METADATA_CACHE_SIZE)
func (api *API) InitOpenGraph() {
- l4g.Debug(utils.T("api.opengraph.init.debug"))
-
api.BaseRoutes.OpenGraph.Handle("", api.ApiSessionRequired(getOpenGraphMetadata)).Methods("POST")
}