mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
13 lines
157 B
Go
13 lines
157 B
Go
package log
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
// Deprecated: Logging shouldn't include control flow.
|
|
var (
|
|
Panicf = log.Panicf
|
|
Fatalf = log.Fatalf
|
|
Fatal = log.Fatal
|
|
)
|