Commit e707ef96 authored by Hanno Schlichting's avatar Hanno Schlichting

Moved a blob related logging message to debug level, for the case of...

Moved a blob related logging message to debug level, for the case of everything working as intended.
parent c4df4cd9
...@@ -22,6 +22,9 @@ New Features ...@@ -22,6 +22,9 @@ New Features
XXX There are known issues with this implementation that need to be XXX There are known issues with this implementation that need to be
sorted out before it is "released". sorted out before it is "released".
- Moved a blob related logging message to debug level, for the case of
everything working as intended.
- Changed the url in the package metadata to point to PyPi. Also removed - Changed the url in the package metadata to point to PyPi. Also removed
references to download.zope.org. references to download.zope.org.
......
...@@ -518,7 +518,7 @@ def auto_layout_select(path): ...@@ -518,7 +518,7 @@ def auto_layout_select(path):
layout = open(layout_marker, 'rb').read() layout = open(layout_marker, 'rb').read()
layout = layout.strip() layout = layout.strip()
log('Blob directory `%s` has layout marker set. ' log('Blob directory `%s` has layout marker set. '
'Selected `%s` layout. ' % (path, layout)) 'Selected `%s` layout. ' % (path, layout), level=logging.DEBUG)
return layout return layout
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment