[Backend] Fixing Hue LOG issue. Hue has __name__ tag present in the getLogger object,
LOG = logging.getLogger(__name__)
LOG = logging.getLogger()
This change replaces __name__ tag. Without __name__ tag the logger object use root logger.
What changes were proposed in this pull request?
• Fixing DEBUG/INFO issue in logging.
How was this patch tested?
• Tested manually
(cherry picked from commit b3719d111d5c1c693a42e4b450f62868c106418d)