aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}