You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor logging package to make log statement simpler. Current format logging.Logger.Info() doesn't look good. We can embed Logrus into pkg/log to import and use it as log.Info()
The text was updated successfully, but these errors were encountered:
##### ISSUE TYPE
- Refactor Pull Request (#262)
##### SUMMARY
Refactor logging package to make log statements simpler. Current format logging.Logger.Info() doesn't look good. We can embed Logrus into pkg/log to import and use it as log.Info()
Fixes #
- Embed Logrus into pkg/log
- Update the reference to new log package
- Change the reference everywhere form
`logging.Logger.Function() --> log.Function()`
Refactor logging package to make log statement simpler. Current format
logging.Logger.Info()
doesn't look good. We can embed Logrus intopkg/log
to import and use it aslog.Info()
The text was updated successfully, but these errors were encountered: