#54 ipsilon-server-install sometimes fails to log & emit errors
Merged 8 years ago by puiterwijk. Opened 8 years ago by jdennis.
jdennis/ipsilon ticket-202  into  master

@@ -441,12 +441,12 @@ 

      opts = []

      out = 0

      openlogs()

+     logger.setLevel(logging.DEBUG)

+ 

      try:

          fplugins = find_plugins()

          opts = parse_args(fplugins)

  

-         logger.setLevel(logging.DEBUG)

- 

          logger.debug('Installation arguments:')

          for k in sorted(opts.iterkeys()):

              logger.debug('%s: %s', k, opts[k])
@@ -459,7 +459,8 @@ 

          else:

              install(fplugins, opts)

      except Exception, e:  # pylint: disable=broad-except

-         logger.debug(e, exc_info=1)

+         logger.info(str(e))         # emit message to console

+         logger.debug(e, exc_info=1) # add backtrace information to logfile

  

          if 'uninstall' in opts and opts['uninstall'] is True:

              logger.info('Uninstallation aborted.')

no initial comment
Metadata