-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Description & use cases
Describe the feature you would like to see in MRI-nufft. Be as specific as possible about what you want to achieve.
- Python stdlib
loggingis the defacto standard for managing different levels of outputs, and manage message to the user. Let's use it to tame the sometime too verbose output of MRI-NUFFT.
Suggested implementation
Describe how you envision the feature being implemented. This could include specific functions, classes, or changes to existing code.
- Set up a per module (per operators as well ?) logger
logger = logging.getLogger(__name__) - Move eventual
printtologger.info - Move
warnings.warntologger.warning - Use sane default for the logging verbosity, but let the user managed it as well if needed.