remove level setting for now (#1466)

This commit is contained in:
Michel Oosterhof 2020-12-07 16:02:05 +08:00 committed by GitHub
parent eef87d650d
commit d0739a434b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -45,7 +45,6 @@ class Output(cowrie.core.output.Output):
def start(self):
self.format = CowrieConfig().get('output_localsyslog', 'format')
facilityString = CowrieConfig().get('output_localsyslog', 'facility')
levelString = CowrieConfig().get('output_localsyslog', 'level')
self.facility = vars(syslog)['LOG_' + facilityString]
self.syslog = twisted.python.syslog.SyslogObserver(prefix='cowrie', facility=self.facility)