When I have to logging messages like this:
logging.info('An operation will be performed...')
some code here
logging.info('DONE')
I want DONE
to be on the same line as the previous message. Is it possible to implement such behavior in the logging package?
Additionally, I see in my current project that logging sometime output messages on the same line, and sometime not. I have a hard time to understand what decides those operations.