diff options
| author | Shulhan <ms@kilabit.info> | 2021-12-06 18:43:27 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-12-06 18:43:27 +0700 |
| commit | ae90efb4cd8ae2464804c17af586eef417b632f1 (patch) | |
| tree | 5cfc4ed9e9c21b49c1dc1be08a173293b079a654 | |
| parent | 0bfe10781a53474fba2ab2b3f933df6b7e0a4e70 (diff) | |
| download | ciigo-ae90efb4cd8ae2464804c17af586eef417b632f1.tar.xz | |
all: add missing new line when printing file to be converted
| -rw-r--r-- | htmlgenerator.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/htmlgenerator.go b/htmlgenerator.go index 06ac43c..8663e05 100644 --- a/htmlgenerator.go +++ b/htmlgenerator.go @@ -109,9 +109,9 @@ func (htmlg *htmlGenerator) convertFileMarkups(fileMarkups map[string]*fileMarku err := htmlg.convert(fmarkup) if err != nil { - fmt.Printf("%s: %s", logp, err) + fmt.Printf("%s: %s\n", logp, err) } else { - fmt.Printf("%s: converting %s", logp, fmarkup.path) + fmt.Printf("%s: converting %s\n", logp, fmarkup.path) } } } |
