mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
8a04d47ab7
commit
1b85303ac2
1 changed files with 4 additions and 0 deletions
|
@ -242,6 +242,10 @@ func (l *logAdapter) PrintTimerIfDelayed(start time.Time, name string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *logAdapter) Printf(format string, v ...any) {
|
func (l *logAdapter) Printf(format string, v ...any) {
|
||||||
|
// Add trailing newline if not present.
|
||||||
|
if !strings.HasSuffix(format, "\n") {
|
||||||
|
format += "\n"
|
||||||
|
}
|
||||||
fmt.Fprintf(l.out, format, v...)
|
fmt.Fprintf(l.out, format, v...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue