(opts *hclog.StandardLoggerOptions)
| 128 | } |
| 129 | |
| 130 | func (h HCLogAdapter) StandardLogger(opts *hclog.StandardLoggerOptions) *log.Logger { |
| 131 | if opts == nil { |
| 132 | opts = &hclog.StandardLoggerOptions{} |
| 133 | } |
| 134 | return log.New(h.StandardWriter(opts), "", 0) |
| 135 | } |
| 136 | |
| 137 | func (HCLogAdapter) StandardWriter(opts *hclog.StandardLoggerOptions) io.Writer { |
| 138 | return os.Stderr |