Update reclass cli entry points, use the logger from reclass.logger

While the reclass.logger module initializes a logger with a basic
config, it also enables/disables debug logging with the --debug option
flag. Thus, we want to use the logger initialized by reclass.logger for
the CLI entry points.
diff --git a/reclass/adapters/ansible.py b/reclass/adapters/ansible.py
index cbf5f17..ac261e7 100755
--- a/reclass/adapters/ansible.py
+++ b/reclass/adapters/ansible.py
@@ -19,6 +19,7 @@
 from reclass.config import find_and_read_configfile, get_options
 from reclass.version import *
 from reclass.constants import MODE_NODEINFO
+from reclass.logs import logger
 
 def cli():
     try:
@@ -53,6 +54,7 @@
                               nodeinfo_help='output host_vars for the given host',
                               add_options_cb=add_ansible_options_group,
                               defaults=defaults)
+        logger.debug('parsed options: %s' % options)
 
         storage = get_storage(options.storage_type, options.nodes_uri,
                               options.classes_uri)
diff --git a/reclass/adapters/salt.py b/reclass/adapters/salt.py
index 1b45823..b926feb 100755
--- a/reclass/adapters/salt.py
+++ b/reclass/adapters/salt.py
@@ -16,8 +16,10 @@
         path_mangler
 from reclass.constants import MODE_NODEINFO
 from reclass.defaults import *
+from reclass.logger import logger
 from reclass.version import *
 
+
 def ext_pillar(minion_id, pillar,
                storage_type=OPT_STORAGE_TYPE,
                inventory_base_uri=OPT_INVENTORY_BASE_URI,
@@ -94,6 +96,7 @@
                               nodeinfo_dest='nodename',
                               nodeinfo_help='output pillar data for a specific node',
                               defaults=defaults)
+        logger.debug('parsed options: %s' % options)
         class_mappings = defaults.get('class_mappings')
 
         if options.mode == MODE_NODEINFO:
diff --git a/reclass/cli.py b/reclass/cli.py
index c3a11a0..df314e8 100644
--- a/reclass/cli.py
+++ b/reclass/cli.py
@@ -16,10 +16,9 @@
 from reclass.errors import ReclassException
 from reclass.defaults import *
 from reclass.constants import MODE_NODEINFO
+from reclass.logs import logger
 from reclass.version import *
 
-logger = logging.getLogger(RECLASS_NAME)
-
 
 def main():
     try: