-
Notifications
You must be signed in to change notification settings - Fork 642
Description
many of the log messages in the golang code need cleanup....
for example, in some cases I've written code like this:
log.Debug("some message %s\n", somevalue)
instead this should use the form:
log.Debugf("some message %s\n", somevalue)
in other cases I have code like this:
log.Debug("some messaage " + somevalue + " some other message")
instead I'd like this code to be like:
log.Debugf("some message %s some other message\n", somevalue)
please do this Issue in a series of PR's instead of a single PR for easier review and merging.
- bug report
- feature request
- support request
Do you want to request a feature or report a bug?
What is the current behavior?
If the current behavior is a bug, please provide the steps to reproduce:
What is the expected behavior?
What is the motivation or use case for changing the behavior?
Other information (e.g. detailed explanation, related issues, suggestions how to fix, etc)
Please tell us about your environment:
- Operating System:
- Container Image Tag:
- Operator Version:
- PostgreSQL Version:
- Platform (Docker, Kubernetes, OpenShift):
- Platform Version: