changed future post loglevel to warn to help user narrow down issues (#7527)

Merge pull request 7527
This commit is contained in:
Josue Caraballo 2019-02-16 10:08:26 -06:00 committed by jekyllbot
parent 403f526275
commit 9ee96562dd
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ module Jekyll
def publishable?(doc)
site.publisher.publish?(doc).tap do |will_publish|
if !will_publish && site.publisher.hidden_in_the_future?(doc)
Jekyll.logger.debug "Skipping:", "#{doc.relative_path} has a future date"
Jekyll.logger.warn "Skipping:", "#{doc.relative_path} has a future date"
end
end
end