kacalayar / subs

MIT License
0 stars 0 forks source link

Import path should be "github.com/sirupsen/logrus", not "github.com/Sirupsen/logrus" #1

Open KateGo520 opened 4 years ago

KateGo520 commented 4 years ago

Background

As README of logrus said, github.com/Sirupsen/logrus is the old path, anything using it should be updated to import and require github.com/sirupsen/logrus.

Some environments experienced problems with the upper-case variant, so the lower-case was decided. Everything using logrus will need to use the lower-case: github.com/sirupsen/logrus. Any package that isn't, should be changed.

Solution

Replace all the import paths, change "github.com/Sirupsen/logrus" to "github.com/sirupsen/logrus". Where did you import it: https://github.com/kacalayar/subs/search?q=github.com%2FSirupsen%2Flogrus&unscoped_q=github.com%2FSirupsen%2Flogrus

KateGo520 commented 4 years ago

@simwood-simon @DJM0 Could you help me review this issue? Thx :p