simi
simi

Reputation: 1555

Django/Python UserWarning Error

I keep getting this error/warning, which is annoying, and wanted to see if I can fix it, but I'm not sure where to start (I'm a newbie):

/home/simi/workspace/hssn_svn/hssn/../hssn/log/loggers.py:28: UserWarning: ERROR: Could not configure logging
  warnings.warn('ERROR: Could not configure logging', UserWarning)

I'm getting this when I do:

python manage.py runserver
python manage.py syncdb
python manane.py shell

Any guidance is greatly appreciated.

Thanks, --simi

Upvotes: 0

Views: 521

Answers (1)

Astra
Astra

Reputation: 11231

Do you have write permissions to all the files within the application you are working with. Also make sure you have everything in settings.py setup correctly, make sure specified paths exist and you have permissions.

Upvotes: 1

Related Questions