mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 06:51:39 -04:00
15 lines
168 B
Go
15 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...)
|
|
}
|