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 c887b0e commit b4bf605Copy full SHA for b4bf605
repos/system_upgrade/common/actors/peseventsscanner/actor.py
@@ -56,5 +56,9 @@ def process(self):
56
vendor_pesfiles = list(filter(lambda vfile: pes_json_suffix in vfile, os.listdir(VENDORS_DIR)))
57
58
for pesfile in vendor_pesfiles:
59
+ self.log.debug("Scanning vendor PES file: {}".format(pesfile))
60
if pesfile[:-len(pes_json_suffix)] in active_vendors:
61
+ self.log.debug("Vendor active, loading vendor PES file: {}".format(pesfile))
62
pes_events_scanner(VENDORS_DIR, pesfile)
63
+ else:
64
+ self.log.debug("Vendor inactive, ignoring vendor PES file: {}".format(pesfile))
0 commit comments