Use Logging in Django South

To enable logging in South migrations, do the following -

Add the following imports to your migration file:

import logging
logger = logging.getLogger('south')
logger.setLevel(logging.INFO)

log with

logger.info('Sample log line')

CategoryComputing.Lang.Python.Django