[Checkins] SVN: Products.CMFCore/trunk/Products/CMFCore/exportimport/ - logging level tweaking

Yvo Schubbe y.2007- at wcm-solutions.de
Sat Dec 22 08:30:52 EST 2007


Log message for revision 82391:
  - logging level tweaking

Changed:
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/actions.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/cachingpolicymgr.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/catalog.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/contenttyperegistry.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/cookieauth.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/mailhost.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/properties.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/skins.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/typeinfo.py
  U   Products.CMFCore/trunk/Products/CMFCore/exportimport/workflow.py

-=-
Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/actions.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/actions.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/actions.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -255,7 +255,7 @@
     tool = getToolByName(site, 'portal_actions', None)
     if tool is None:
         logger = context.getLogger('actions')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/cachingpolicymgr.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/cachingpolicymgr.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/cachingpolicymgr.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -184,7 +184,7 @@
     tool = getToolByName(site, 'caching_policy_manager', None)
     if tool is None:
         logger = context.getLogger('cachingpolicies')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/catalog.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/catalog.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/catalog.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -36,7 +36,7 @@
     tool = getToolByName(site, 'portal_catalog', None)
     if tool is None:
         logger = context.getLogger('catalog')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/contenttyperegistry.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/contenttyperegistry.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/contenttyperegistry.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -123,7 +123,7 @@
     tool = getToolByName(site, 'content_type_registry', None)
     if tool is None:
         logger = context.getLogger('contenttypes')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/cookieauth.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/cookieauth.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/cookieauth.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -73,7 +73,7 @@
     tool = getToolByName(site, 'cookie_authentication', None)
     if tool is None:
         logger = context.getLogger('cookies')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/mailhost.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/mailhost.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/mailhost.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -38,7 +38,7 @@
     tool = sm.queryUtility(IMailHost)
     if tool is None:
         logger = context.getLogger('mailhost')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/properties.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/properties.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/properties.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -75,7 +75,7 @@
 
     body = context.readDataFile(_FILENAME)
     if body is None:
-        logger.info('Nothing to import.')
+        logger.debug('Nothing to import.')
         return
 
     importer = queryMultiAdapter((site, context), IBody)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/skins.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/skins.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/skins.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -230,7 +230,7 @@
     tool = getToolByName(site, 'portal_skins', None)
     if tool is None:
         logger = context.getLogger('skins')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/typeinfo.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/typeinfo.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/typeinfo.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -189,7 +189,7 @@
     tool = getToolByName(site, 'portal_types', None)
     if tool is None:
         logger = context.getLogger('types')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)

Modified: Products.CMFCore/trunk/Products/CMFCore/exportimport/workflow.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/exportimport/workflow.py	2007-12-22 13:29:55 UTC (rev 82390)
+++ Products.CMFCore/trunk/Products/CMFCore/exportimport/workflow.py	2007-12-22 13:30:52 UTC (rev 82391)
@@ -132,7 +132,7 @@
     tool = getToolByName(site, 'portal_workflow', None)
     if tool is None:
         logger = context.getLogger('workflow')
-        logger.info('Nothing to export.')
+        logger.debug('Nothing to export.')
         return
 
     exportObjects(tool, '', context)



More information about the Checkins mailing list