File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 77_obj
88_test
99
10+ # test
11+ coverage.out
12+
1013# Architecture specific extensions/prefixes
1114* . [568vq ]
1215[568vq ].out
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ branches:
88 - develop
99
1010go :
11- - 1.5
1211 - 1.6
12+ - 1.7
1313 - tip
1414
1515before_install :
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ type FlagPart struct {
3232// For e.g.:
3333// %time:2006-01-02 15:04:05.000 %level %custom:- %msg
3434func parseFlag (format string ) (* []FlagPart , error ) {
35- if ess .StrIsEmpty (format ) {
35+ if ess .IsStrEmpty (format ) {
3636 return nil , ErrFormatStringEmpty
3737 }
3838
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ type Logger interface {
188188
189189// New creates the logger based config supplied
190190func New (configStr string ) (Logger , error ) {
191- if ess .StrIsEmpty (configStr ) {
191+ if ess .IsStrEmpty (configStr ) {
192192 return nil , errors .New ("logger config is empty" )
193193 }
194194
You can’t perform that action at this time.
0 commit comments