diff options
| author | Shulhan <ms@kilabit.info> | 2025-04-18 15:11:18 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-04-18 15:11:18 +0700 |
| commit | 89d1a301ea4d42b73d7af3c982ede59e1f868260 (patch) | |
| tree | 691722af0777a6daf630baf9964b6b374c518d1c | |
| parent | b966bc52b9ecc62be830c14882ea93085c08556d (diff) | |
| download | asciidoctor-go-89d1a301ea4d42b73d7af3c982ede59e1f868260.tar.xz | |
all: remove logging
| -rw-r--r-- | element_include.go | 3 |
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 } |
