File tree Expand file tree Collapse file tree 5 files changed +8
-67
lines changed Expand file tree Collapse file tree 5 files changed +8
-67
lines changed Original file line number Diff line number Diff line change 11language : go
22go :
3- - 1.7.x
4- - 1.8.x
3+ - 1.11.x
54 - tip
6- before_install :
7- - go get github.com/modocache/gover
8- - go get github.com/mattn/goveralls
9- - go get golang.org/x/tools/cmd/cover
5+ env :
6+ - GO111MODULE=on
107script :
11- - go test -race ./...
12- - go test -coverprofile=color.coverprofile ./color
13- - go test -coverprofile=bytes.coverprofile ./bytes
14- - go test -coverprofile=log.coverprofile ./log
15- - go test -coverprofile=random.coverprofile ./random
16- - gover
17- - goveralls -coverprofile=gover.coverprofile -service=travis-ci
8+ - go test -race -coverprofile=coverage.txt -covermode=atomic ./...
9+ after_success :
10+ - bash <(curl -s https://codecov.io/bash)
1811matrix :
1912 allow_failures :
2013 - go : tip
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2015 labstack
3+ Copyright (c) 2018 labstack
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ func (l *Logger) Panic(i ...interface{}) {
219219
220220func (l * Logger ) Panicf (format string , args ... interface {}) {
221221 l .log (panicLevel , format , args ... )
222- panic (fmt .Sprintf (format , args ))
222+ panic (fmt .Sprintf (format , args ... ))
223223}
224224
225225func (l * Logger ) Panicj (j JSON ) {
You can’t perform that action at this time.
0 commit comments