Skip to content

Commit fafa07a

Browse files
authored
Add some debug info to try and understand a bug with the run number. (#805)
1 parent 402a76a commit fafa07a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Framework/include/QualityControl/runnerUtils.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ inline int computeRunNumber(const framework::ServiceRegistry& services, const bo
7878
<< ENDM;
7979
}
8080
run = run > 0 /* found it in service */ ? run : config.get<int>("qc.config.Activity.number", 0);
81+
ILOG(Debug, Devel) << "Run number returned by computeRunNumber (tree) : " << run << ENDM;
8182
return run;
8283
}
8384

@@ -95,6 +96,7 @@ inline int computeRunNumber(const framework::ServiceRegistry& services, int defa
9596
<< ENDM;
9697
}
9798
run = run > 0 /* found it in service */ ? run : defaultRunNumber;
99+
ILOG(Debug, Devel) << "Run number returned by computeRunNumber (default) : " << run << ENDM;
98100
return run;
99101
}
100102

0 commit comments

Comments
 (0)