Source code for django_website.LogGenerator

import os
from django.conf import settings

[docs]def write_to_log(message): """ Convenience function used to debug the code. It writes to the local file 'messages.log'. Parameters ---------- message : str The text to be inserted in the file 'messages.log' Returns ------- none """ f=open(os.path.join(settings.BASE_DIR, "messages.log"), "a+") f.write(message + '\n')