Skip to content

Commit a3f24c2

Browse files
author
Pipeline Project User
committed
avoid confusing 1_2 in log filename for dual_lane
1 parent eab9ade commit a3f24c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BRB/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def run_brb(configfile, stats, fcid):
111111
if not dual_lane:
112112
logFile = Path(config['Paths']['logPath'], config.get('Options','runID') + '.log')
113113
else:
114-
logFile = Path(config['Paths']['logPath'], config.get('Options','runID') + '_2' + '.log')
114+
logFile = Path(config['Paths']['logPath'], config.get('Options','runID')[:-1] + '_both' + '.log')
115115
print(f"Logging into: {logFile}")
116116
setLog(logFile)
117117

0 commit comments

Comments
 (0)