Skip to content

Commit a6db813

Browse files
Dean KarnDean Karn
authored andcommitted
Updated colors due to ansi lib color change.
1 parent a2ed974 commit a6db813

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## log
22
<img align="right" src="https://raw.githubusercontent.com/go-playground/log/master/logo.png">
3-
![Project status](https://img.shields.io/badge/version-4.1.0-green.svg)
3+
![Project status](https://img.shields.io/badge/version-4.2.0-green.svg)
44
[![Build Status](https://semaphoreci.com/api/v1/joeybloggs/log/branches/master/badge.svg)](https://semaphoreci.com/joeybloggs/log)
55
[![Coverage Status](https://coveralls.io/repos/github/go-playground/log/badge.svg?branch=master)](https://coveralls.io/github/go-playground/log?branch=master)
66
[![Go Report Card](https://goreportcard.com/badge/github.com/go-playground/log)](https://goreportcard.com/report/github.com/go-playground/log)

handlers/console/console.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var defaultColors = [...]ansi.EscSeq{
5151
log.TraceLevel: ansi.White,
5252
log.InfoLevel: ansi.Blue,
5353
log.NoticeLevel: ansi.LightCyan,
54-
log.WarnLevel: ansi.Yellow,
54+
log.WarnLevel: ansi.LightYellow,
5555
log.ErrorLevel: ansi.LightRed,
5656
log.PanicLevel: ansi.Red,
5757
log.AlertLevel: ansi.Red + ansi.Underline,

handlers/syslog/syslog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var (
5151
log.TraceLevel: ansi.White,
5252
log.InfoLevel: ansi.Blue,
5353
log.NoticeLevel: ansi.LightCyan,
54-
log.WarnLevel: ansi.Yellow,
54+
log.WarnLevel: ansi.LightYellow,
5555
log.ErrorLevel: ansi.LightRed,
5656
log.PanicLevel: ansi.Red,
5757
log.AlertLevel: ansi.Red + ansi.Underline,

0 commit comments

Comments
 (0)