mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
14 lines
168 B
Go
14 lines
168 B
Go
package classic
|
|
|
|
import "log"
|
|
|
|
type Logger struct {
|
|
Enabled bool
|
|
}
|
|
|
|
func (l *Logger) Log(input ...interface{}) {
|
|
if !l.Enabled {
|
|
return
|
|
}
|
|
log.Println(input...)
|
|
}
|