celestiaorg / knuu

Integration Test Framework
Apache License 2.0
39 stars 34 forks source link

Consider using structured logging throughout the project #458

Closed mojtaba-esk closed 3 weeks ago

mojtaba-esk commented 3 months ago

currently logs are just strings, consider using some custom fields where needed like the examples below:

k.Logger.WithError(err).Error("Failed to delete namespace during cleanup")
c.logger.WithField("namespace", name).Debug("Namespace already exists, continuing.")