From 11d2b5a72a9c7e13e00bcbf64e23a410eb1edcf6 Mon Sep 17 00:00:00 2001 From: ujiro99 Date: Sun, 17 Jan 2016 21:52:04 +0900 Subject: [PATCH] update to v0.4.3 specify blue on Debug log --- colorizer.go | 2 +- const.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/colorizer.go b/colorizer.go index ecccc90..7142a59 100644 --- a/colorizer.go +++ b/colorizer.go @@ -127,7 +127,7 @@ var colorMap = map[string]string{ // priorityColors represents default color of priority. var priorityColors = map[string]string{ "V": "default", - "D": "default", + "D": "blue", "I": "default", "W": "yellow", "E": "red", diff --git a/const.go b/const.go index fc8cfa3..b13943c 100644 --- a/const.go +++ b/const.go @@ -4,7 +4,7 @@ const ( // Name of this command. Name string = "logcatf" // Version of this command. - Version string = "0.4.2" + Version string = "0.4.3" // DefaultFormat will be used if format wasn't specified. DefaultFormat string = "%time [invert] %priority [reset] %tag: %message" // AllFormat will be used if format wasn't specified and to-csv was specified.