aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/markup/markdown/meta.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/markup/markdown/meta.go b/modules/markup/markdown/meta.go
index 45d79d537a..fb37236d77 100644
--- a/modules/markup/markdown/meta.go
+++ b/modules/markup/markdown/meta.go
@@ -10,8 +10,6 @@ import (
"unicode"
"unicode/utf8"
- "code.gitea.io/gitea/modules/log"
-
"gopkg.in/yaml.v3"
)
@@ -99,8 +97,6 @@ func ExtractMetadataBytes(contents []byte, out interface{}) ([]byte, error) {
return contents, errors.New("could not determine metadata")
}
- log.Info("%s", string(front))
-
if err := yaml.Unmarshal(front, out); err != nil {
return contents, err
}