You could do the formatting yourself:
logging.info('date={}'.format(date))
As was pointed out by Martijn Pieters, this will always run the string formatting, while using the logging module would cause the formatting to only be performed if the message is actually logged.