I am using python logging module.
When I output the any message it has the default output string as prefix.
For example
logging.info("any message")
gives output with prefix "INFO:"
INFO:any message
I want to print simple messages without any prefix.
How one could do that?