summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-04-18 15:11:18 +0700
committerShulhan <ms@kilabit.info>2025-04-18 15:11:18 +0700
commit89d1a301ea4d42b73d7af3c982ede59e1f868260 (patch)
tree691722af0777a6daf630baf9964b6b374c518d1c
parentb966bc52b9ecc62be830c14882ea93085c08556d (diff)
downloadasciidoctor-go-89d1a301ea4d42b73d7af3c982ede59e1f868260.tar.xz
all: remove logging
-rw-r--r--element_include.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/element_include.go b/element_include.go
index 187348b..80bc4ea 100644
--- a/element_include.go
+++ b/element_include.go
@@ -5,7 +5,6 @@ package asciidoctor
import (
"bytes"
- "log"
"os"
"path/filepath"
)
@@ -49,10 +48,8 @@ func parseInclude(doc *Document, line []byte) (el *elementInclude) {
} else {
el.fpath = filepath.Join(doc.docdir, string(newPath))
}
- log.Printf(`parseInclude: fpath: %s`, el.fpath)
el.content, err = os.ReadFile(el.fpath)
if err != nil {
- log.Printf(`parseInclude %q: %s`, el.fpath, err)
return nil
}