mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-14 01:04:14 +00:00
lib/logger: Add missing dots (fixes #5073)
This commit is contained in:
parent
a4415bce10
commit
3d8344003e
@ -106,7 +106,7 @@ func (l *logger) callHandlers(level LogLevel, s string) {
|
|||||||
|
|
||||||
// Debugln logs a line with a DEBUG prefix.
|
// Debugln logs a line with a DEBUG prefix.
|
||||||
func (l *logger) Debugln(vals ...interface{}) {
|
func (l *logger) Debugln(vals ...interface{}) {
|
||||||
l.debugln(3, vals)
|
l.debugln(3, vals...)
|
||||||
}
|
}
|
||||||
func (l *logger) debugln(level int, vals ...interface{}) {
|
func (l *logger) debugln(level int, vals ...interface{}) {
|
||||||
s := fmt.Sprintln(vals...)
|
s := fmt.Sprintln(vals...)
|
||||||
|
Loading…
Reference in New Issue
Block a user