Skip to content
Snippets Groups Projects
Commit 62288902 authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

Changed warning level

parent 43da5866
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ Int_t Scandalizer::ReadOneEvent()
skipped = run->SkipToEndOfFile(_skip_events);
}
_skip_events = 0;
_logger->debug("skipped {} events", skipped);
_logger->info("skipped {} events", skipped);
continue;
}
if (to_read_file){
......
......@@ -537,6 +537,12 @@ void THcHitList::MissReport(const char *name)
{
_hit_logger->warn("Missing Ref times: {:20} {:10} {:10}", name, fNTDCRef_miss, fNADCRef_miss);
if( fNTDCRef_miss != 0) {
_hit_logger->error("Missing Ref times: {:20} {:10} {:10}", name, fNTDCRef_miss, fNADCRef_miss);
}
if( fNADCRef_miss != 0) {
_hit_logger->error("Missing Ref times: {:20} {:10} {:10}", name, fNTDCRef_miss, fNADCRef_miss);
}
//cout << "Missing Ref times:" << setw(20) << name << setw(10) << fNTDCRef_miss << setw(10) << fNADCRef_miss << endl;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment