contiv / libOpenflow

Apache License 2.0
21 stars 45 forks source link

Fix case-insensitive import collision by "Sirupsen/logrus” #11

Closed wenyingd closed 4 years ago

wenyingd commented 4 years ago

The repo of logrus is renamed as “sirupsen/logrus” since 2018, all latest versions are using the new name. And the original versions might cause case-insensitive import collision when the OS is not case sentitive.

Use "github.com/sirupsen/logrus" instead of "github.com/Sirupsen/logrus" in the imports.

Signed-off-by: wenyingd wenyingd@vmware.com