pyln: Set the prefix in TailableProc

We rely on it when logging, but didn't set it in the class, rather we
did in the sub-classes. This proved to be rather annoying to search
since it'd just fail silently and not log any output.
This commit is contained in:
Christian Decker 2020-11-12 13:20:02 +01:00 committed by neil saitug
parent 7514d7fb48
commit c9d24b1de2
1 changed files with 1 additions and 0 deletions

View File

@ -146,6 +146,7 @@ class TailableProc(object):
self.outputDir = outputDir
self.logsearch_start = 0
self.err_logs = []
self.prefix = ""
# Should we be logging lines we read from stdout?
self.verbose = verbose