Feature service should log in DEBUG instead of INFO
---------------------------------------------------

                 Key: KARAF-1271
                 URL: https://issues.apache.org/jira/browse/KARAF-1271
             Project: Karaf
          Issue Type: Improvement
          Components: karaf-feature
    Affects Versions: 2.2.5
            Reporter: Jean-Baptiste Onofré
            Assignee: Jean-Baptiste Onofré
             Fix For: 2.2.6, 3.0.0


Currently, the FeatureService logs the feature installation and bundles in 
feature installation in INFO:

- for features:
        LOGGER.info("Installing feature " + feature.getName() + " " + 
feature.getVersion());
        if (verbose) {
            System.out.println("Installing feature " + feature.getName() + " " 
+ feature.getVersion());
        }

- for bundles in feature:
            LOGGER.info("Installing bundle " + bundleLocation);
            if (verbose) {
                System.out.println("Installing bundle " + bundleLocation);
            }

If we have a lot of bootFeatures or a feature gathering a lot of bundles, it 
means that we will have a bunch of log (which is not really insteresting).

I will move this kind of log in the FeatuerService to DEBUG instead of INFO.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira


Reply via email to