Skip to content

Commit

Permalink
change logrus package name and update other package version (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
sadayuki-matsuno authored and kotakanbe committed Jun 28, 2017
1 parent 0724974 commit 89e381b
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 27 deletions.
54 changes: 30 additions & 24 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@

[[constraint]]
name = "github.com/sirupsen/logrus"
branch = "master"
name = "github.com/Sirupsen/logrus"

[[constraint]]
branch = "master"
name = "github.com/kotakanbe/logrus-prefixed-formatter"
branch = "master"

[[constraint]]
name = "github.com/cheggaaa/pb"
branch = "master"
1 change: 1 addition & 0 deletions jvn/jvn.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ func fetchJvnConcurrently(urls []string) (allItems []Item, err error) {
}
bar.Increment()
}
bar.Finish()
// bar.FinishPrint("Finished to fetch CVE information from JVN.")
if 0 < len(errs) {
return allItems, fmt.Errorf("%s", errs)
Expand Down
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"os"
"path/filepath"

"github.com/Sirupsen/logrus"
formatter "github.com/kotakanbe/logrus-prefixed-formatter"
"github.com/rifflock/lfshook"
"github.com/sirupsen/logrus"
)

var logger *logrus.Entry
Expand Down
1 change: 1 addition & 0 deletions nvd/nvd.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ func fetchFeedFileConcurrently(urls []string) (nvds []Nvd, err error) {
}
bar.Increment()
}
bar.Finish()
// bar.FinishPrint("Finished to fetch CVE information from JVN.")
if 0 < len(errs) {
return nvds, fmt.Errorf("%s", errs)
Expand Down

0 comments on commit 89e381b

Please sign in to comment.