ChronoTomato/internal/helper/logging.go

13 lines
189 B
Go
Raw Permalink Normal View History

package helper
import (
"github.com/charmbracelet/log"
"os"
"time"
)
var Logger = log.NewWithOptions(os.Stdout, log.Options{
ReportTimestamp: true,
TimeFormat: time.RFC3339,
})