diff options
| -rw-r--r-- | internal/toggledlog/log.go | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/internal/toggledlog/log.go b/internal/toggledlog/log.go index 31a9eb6..7f437c8 100644 --- a/internal/toggledlog/log.go +++ b/internal/toggledlog/log.go @@ -36,7 +36,7 @@ func (l *toggledLogger) Printf(format string, v ...interface{}) {  	}  	l.Logger.Printf(format, v...)  	if l.Wpanic { -		panic(wpanicMsg + fmt.Sprintf(format, v...)) +		l.Logger.Panic(wpanicMsg + fmt.Sprintf(format, v...))  	}  }  func (l *toggledLogger) Println(v ...interface{}) { @@ -45,7 +45,7 @@ func (l *toggledLogger) Println(v ...interface{}) {  	}  	l.Logger.Println(v...)  	if l.Wpanic { -		panic(wpanicMsg + fmt.Sprintln(v...)) +		l.Logger.Panic(wpanicMsg + fmt.Sprintln(v...))  	}  } | 
