We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48fc47f commit d418fdfCopy full SHA for d418fdf
logentries/utils.py
@@ -99,9 +99,9 @@ def run(self):
99
class LeHandler(logging.Handler):
100
def __init__(self, key, hostname, logname='Default.log'):
101
logging.Handler.__init__(self)
102
- self.key = key
103
- self.hostname = hostname
104
- self.logname = logname
+ self.key = key
+ self.hostname = hostname
+ self.logname = logname
105
format = logging.Formatter('%(asctime)s : %(levelname)s, %(message)s', '%a %b %d %H:%M:%S %Z %Y')
106
self.setFormatter(format)
107
self._thread = SocketAppender(self.key, self.hostname, self.logname)
0 commit comments