Add comments for CLILogger

This commit is contained in:
Elara 2023-01-29 21:32:06 -08:00
parent 35cd34ae9c
commit ea30505f4e
1 changed files with 4 additions and 0 deletions

4
cli.go
View File

@ -16,6 +16,9 @@ import (
var _ Logger = (*CLILogger)(nil)
// CLILogger is a logger meant to be used for CLI tools
// where users will view and read the logs throughout the
// application's execution
type CLILogger struct {
Out io.Writer
Level LogLevel
@ -35,6 +38,7 @@ type CLILogger struct {
PanicColor color.Color
}
// NewCLI creates and returns a new CLILogger
func NewCLI(out io.Writer) *CLILogger {
useColor := false
if f, ok := out.(*os.File); ok {