Skip to content
This repository has been archived by the owner on Nov 15, 2020. It is now read-only.

Commit

Permalink
Merge pull request #19 from elricho/master
Browse files Browse the repository at this point in the history
Remove syslog - use python logging
  • Loading branch information
elricho committed Aug 19, 2016
2 parents 421762a + 0d52162 commit cd6aaeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handsetdetection/HDBase.py
Expand Up @@ -22,7 +22,7 @@
#

import os
import syslog
import logging
import re

class HDBase(object):
Expand Down Expand Up @@ -257,7 +257,7 @@ def cleanStr(self, headerString):
return headerString

def log(self, msg):
syslog.syslog(msg)
logging.warning(msg)

def hasBiKeys(self, headers):
if 'agent' in headers:
Expand Down

0 comments on commit cd6aaeb

Please sign in to comment.