mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
* Update to go 1.19 * Update dependencies * Update cross-compile script * Add missing targets to cross-compile-all * Update cache action to remove warning
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
|
|
)
|