Update logging.getLogger() calls to use edx instead of mitx

This commit is contained in:
David Baumgold
2013-12-02 14:28:00 -05:00
parent bbcd8affa9
commit e26fc08d2b
20 changed files with 20 additions and 21 deletions

View File

@@ -702,7 +702,7 @@ def update_user_information(sender, instance, created, **kwargs):
cc_user = cc.User.from_django_user(instance)
cc_user.save()
except Exception as e:
log = logging.getLogger("mitx.discussion")
log = logging.getLogger("edx.discussion")
log.error(unicode(e))
log.error("update user info to discussion failed for user with id: " + str(instance.id))