Browse Source

Highlight all row with red color on error

Volodymyr Tkach 2 years ago
parent
commit
7d2a43058c
2 changed files with 10 additions and 7 deletions
  1. 7 4
      gosql/common/common.go
  2. 3 3
      gosql/common/common_test.go

+ 7 - 4
gosql/common/common.go

@@ -54,17 +54,20 @@ func log(w io.Writer, m string, s time.Time, e error, tx bool, query string, arg
 		astr = fmt.Sprintf(" (%v)", args)
 	}
 
+	bold := "0"
+	color := "33"
+
 	estr := " (nil)"
 	if e != nil {
-		estr = " \033[0m\033[0;31m(" + e.Error() + ")"
+		color = "31"
+		estr = " (" + e.Error() + ")"
 	}
 
-	color := "0;33"
 	if tx {
-		color = "1;33"
+		bold = "1"
 	}
 
-	res := fmt.Sprintln("\033[" + color + "m[SQL]" + tmsg + qmsg + astr + estr + fmt.Sprintf(" %.3f ms", time.Since(s).Seconds()) + "\033[0m")
+	res := fmt.Sprintln("\033[" + bold + ";" + color + "m[SQL]" + tmsg + qmsg + astr + estr + fmt.Sprintf(" %.3f ms", time.Since(s).Seconds()) + "\033[0m")
 	fmt.Fprint(w, res)
 	return res
 }

+ 3 - 3
gosql/common/common_test.go

@@ -36,17 +36,17 @@ var _ = Describe("common", func() {
 
 			It("with error message", func() {
 				str := common.Log(io.Discard, "[func Exec]", time.Now(), fmt.Errorf("Exec error"), false, "select * from users")
-				Expect(str).To(Equal("\x1b[0;33m[SQL] [func Exec] select * from users (empty) \x1b[0m\x1b[0;31m(Exec error) 0.000 ms\x1b[0m\n"))
+				Expect(str).To(Equal("\x1b[0;31m[SQL] [func Exec] select * from users (empty) (Exec error) 0.000 ms\x1b[0m\n"))
 			})
 
 			It("with transaction flag", func() {
 				str := common.Log(io.Discard, "[func Exec]", time.Now(), fmt.Errorf("Exec error"), true, "select * from users")
-				Expect(str).To(Equal("\x1b[1;33m[SQL] [TX] [func Exec] select * from users (empty) \x1b[0m\x1b[0;31m(Exec error) 0.000 ms\x1b[0m\n"))
+				Expect(str).To(Equal("\x1b[1;31m[SQL] [TX] [func Exec] select * from users (empty) (Exec error) 0.000 ms\x1b[0m\n"))
 			})
 
 			It("with sql query arguments", func() {
 				str := common.Log(io.Discard, "[func Exec]", time.Now(), fmt.Errorf("Exec error"), true, "select * from users where id=$1", 100)
-				Expect(str).To(Equal("\x1b[1;33m[SQL] [TX] [func Exec] select * from users where id=$1 ([100]) \x1b[0m\x1b[0;31m(Exec error) 0.000 ms\x1b[0m\n"))
+				Expect(str).To(Equal("\x1b[1;31m[SQL] [TX] [func Exec] select * from users where id=$1 ([100]) (Exec error) 0.000 ms\x1b[0m\n"))
 			})
 		})
 	})