mirror of
https://github.com/status-im/status-go.git
synced 2025-02-17 17:28:38 +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
|
||
|
)
|