Newline in logging xml
This commit is contained in:
parent
e03af767ca
commit
b70a3331e0
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ class Subscriber:
|
||||||
else:
|
else:
|
||||||
self.navlocationsent = True
|
self.navlocationsent = True
|
||||||
msg = re.sub(r"INSERTCOMMANDID", str(self.commandID), msg)
|
msg = re.sub(r"INSERTCOMMANDID", str(self.commandID), msg)
|
||||||
log.debug("sending xml to subscriber %s: %s" % (self.tostr(), msg))
|
log.debug("sending xml to subscriber %s:\n%s" % (self.tostr(), msg))
|
||||||
url = self.protocol + '://' + self.host + ':' + self.port \
|
url = self.protocol + '://' + self.host + ':' + self.port \
|
||||||
+ "/:/timeline"
|
+ "/:/timeline"
|
||||||
t = threading.Thread(target=self.threadedSend, args=(url, msg))
|
t = threading.Thread(target=self.threadedSend, args=(url, msg))
|
||||||
|
|
Loading…
Reference in a new issue