retrieve django app name as an attribute in error logs

i want to get my app name as an attribute in my error log. how to do that using a single function? my code is given below

db_logger.exception(e, extra= {“user”: self.user.username, “class_name”: self.class.name, “application_name”:__________})

I am able to retrieve other attributes.
I want to fetch my appname to the “application_name” attribute in the above code. Please have a look.

From what I can find quickly, I think the closest you’re going to get to this is self.__module__.

“application_name”: package
this is working