fix: completely remove old logger

This commit is contained in:
2025-01-23 11:42:48 +03:00
parent a09863dfcb
commit 18e90e4afc
4 changed files with 4 additions and 16 deletions

View File

@ -34,6 +34,9 @@ type Logger struct {
func setupOutLogger() *log.Logger {
styles := log.DefaultStyles()
logger := log.New(os.Stdout)
styles.Levels[log.InfoLevel] = lipgloss.NewStyle().
SetString("-->").
Foreground(lipgloss.Color("35"))
logger.SetStyles(styles)
return logger
}