DOC: Add notice message for systemd backend when no journal match

pull/703/head
Steven Hiscocks 2014-04-20 17:59:41 +01:00
parent 233aa043f3
commit a7766d3316
1 changed files with 6 additions and 0 deletions

View File

@ -213,6 +213,12 @@ class FilterSystemd(JournalFilter): # pragma: systemd no cover
def run(self):
if not self.getJournalMatch():
logSys.notice(
"Jail started without 'journalmatch' set. "
"Jail regexs will be checked against all journal entries, "
"which is not advised for performance reasons.")
# Seek to now - findtime in journal
start_time = datetime.datetime.now() - \
datetime.timedelta(seconds=int(self.getFindTime()))