Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/job_wrapper/CMSRunAnalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,9 @@ def compareBrachListWithReference(branchList, tier):
+ f" {scriptArguments}")
command += " > cmsRun-stdout.log.tmp 2>&1"
print(f"==== Will execute {command}")
# Enable verbose xrootd logging for the cmsRun subprocess
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, Vijay!

Let's hold this for a bit, though. Maybe we will not need it.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK

os.environ['XRD_LOGLEVEL'] = 'Debug'
print("XRD_LOGLEVEL set to Debug for xrootd verbose logging")
applicationExitCode = executeUserApplication(cmd=command, scramTool=scram, cleanEnv=False)
if applicationExitCode:
print(f"==== Execution FAILED at {UTCNow()} ====")
Expand Down