36533f7c3f
Fixes for new geth version
81 lines
2.4 KiB
Go
81 lines
2.4 KiB
Go
// Copyright (c) 2019 Uber Technologies, Inc.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
package fxlog
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
|
|
"go.uber.org/fx/internal/fxreflect"
|
|
)
|
|
|
|
var _exit = func() { os.Exit(1) }
|
|
|
|
// Printer is a formatting printer.
|
|
type Printer interface {
|
|
Printf(string, ...interface{})
|
|
}
|
|
|
|
// New returns a new Logger backed by the standard library's log package.
|
|
func New() *Logger {
|
|
return &Logger{log.New(os.Stderr, "", log.LstdFlags)}
|
|
}
|
|
|
|
// A Logger writes output to standard error.
|
|
type Logger struct {
|
|
Printer
|
|
}
|
|
|
|
// Printf logs a formatted Fx line.
|
|
func (l *Logger) Printf(format string, v ...interface{}) {
|
|
l.Printer.Printf(prepend(format), v...)
|
|
}
|
|
|
|
// PrintProvide logs a type provided into the dig.Container.
|
|
func (l *Logger) PrintProvide(t interface{}) {
|
|
for _, rtype := range fxreflect.ReturnTypes(t) {
|
|
l.Printf("PROVIDE\t%s <= %s", rtype, fxreflect.FuncName(t))
|
|
}
|
|
}
|
|
|
|
// PrintSignal logs an os.Signal.
|
|
func (l *Logger) PrintSignal(signal os.Signal) {
|
|
l.Printf(strings.ToUpper(signal.String()))
|
|
}
|
|
|
|
// Panic logs an Fx line then panics.
|
|
func (l *Logger) Panic(err error) {
|
|
l.Printer.Printf(prepend(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
// Fatalf logs an Fx line then fatals.
|
|
func (l *Logger) Fatalf(format string, v ...interface{}) {
|
|
l.Printer.Printf(prepend(format), v...)
|
|
_exit()
|
|
}
|
|
|
|
func prepend(str string) string {
|
|
return fmt.Sprintf("[Fx] %s", str)
|
|
}
|