Change exception to debug message on oauth load error
diff --git a/_modules/maas.py b/_modules/maas.py
index d6ca2a9..3c9b55e 100644
--- a/_modules/maas.py
+++ b/_modules/maas.py
@@ -31,7 +31,8 @@
     from maas_client import MAASClient, MAASDispatcher, MAASOAuth
     HAS_MASS = True
 except ImportError:
-    LOG.exception('why??')
+    LOG.debug('Missing python-oauth module. Skipping')
+    pass
 
 
 def __virtual__():