mirror of
https://github.com/pikami/tiktok-dl.git
synced 2024-11-25 17:25:42 +00:00
32 lines
543 B
Go
32 lines
543 B
Go
package utils
|
|
|
|
import (
|
|
config "../models/config"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
// Log - Write to std out
|
|
func Log(a ...interface{}) {
|
|
if !config.Config.Quiet {
|
|
fmt.Println(a...)
|
|
}
|
|
}
|
|
|
|
// Logf - Write formated text
|
|
func Logf(format string, a ...interface{}) {
|
|
if !config.Config.Quiet {
|
|
fmt.Printf(format, a...)
|
|
}
|
|
}
|
|
|
|
// LogFatal - Write error and panic
|
|
func LogFatal(format string, a ...interface{}) {
|
|
panic(fmt.Sprintf(format, a...))
|
|
}
|
|
|
|
// LogErr - Write error
|
|
func LogErr(format string, a ...interface{}) {
|
|
fmt.Fprintf(os.Stderr, format, a...)
|
|
}
|