Unable to create log files using logging.basicConfig()

HariPrasad1
Databricks Partner

When I run this code below, I am not able to see the file under the path specified:

import logging
logger = logging.getLogger(__name__)
logging.basicConfig(filename='/Volumes/d_use1_ach_dbw_databricks1/default/ach_elegibility_raw/logs/example.log', encoding='utf-8', level=logging.DEBUG)
logger.debug('This message should go to the log file')
logger.info('So should this')
logger.warning('And this, too')
logger.error('And non-ASCII stuff, too, like Øresund and Malmö')

How do we locate the file in this scenario?