mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Inconsistent warning/error, pages failing switched to warning.
Fixes #397
This commit is contained in:
parent
d726e5e81c
commit
3c5f6e1887
1 changed files with 1 additions and 1 deletions
|
|
@ -368,7 +368,7 @@ class PagesGenerator(Generator):
|
|||
try:
|
||||
content, metadata = read_file(f)
|
||||
except Exception, e:
|
||||
logger.error(u'Could not process %s\n%s' % (f, str(e)))
|
||||
logger.warning(u'Could not process %s\n%s' % (f, str(e)))
|
||||
continue
|
||||
page = Page(content, metadata, settings=self.settings,
|
||||
filename=f)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue