Closed mpvanderschelling closed 1 year ago
The default logging level of the f3dasm logger is set to warning. This means that any message that is labeled as INFO or DEBUG will not be displayed by default
To enable logging in any other level, the user has to do the following:
from f3dasm import logger
import logging
logger.setLevel(logging.INFO)
The logger
object is a standard logger from the logging
library
Leaving the warning as the default logging level seems the expected behavior to me.
Setting other logging option looks pretty straightforward as well.
I think this fix can be merged and the issue closed - good job!
Fixes #186