How to Solve NameError: name 'define_logging_options' is not defined -- tornado

Solution: Import the 'define_logging_options' module

# Add the following line to the top of your code
from tornado.log import define_logging_options

 

For more information:
tornado define_logging_options