Skip to content

Commit

Permalink
Report FATAL error when ext_data_clnt::setup() failed to map all items.
Browse files Browse the repository at this point in the history
  • Loading branch information
inkdot7 committed Apr 18, 2023
1 parent 9ad89a3 commit bc12fa1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions r3bsource/base/R3BUcesbSource.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,12 @@ Bool_t R3BUcesbSource::InitUnpackers()
{
R3BLOG(warn, "ext_data_clnt::setup() failed to map all items:");
ext_data_struct_info_print_map_success(fStructInfo, stderr, map_ok);
/* FairRunOnline::Init() ignores the return value from
* GetSource()->InitUnpackers(); so do a (FATAL) error.
*/
R3BLOG(error,
"ext_data_clnt::setup() mapping failure may "
"cause unexpected analysis results due to missing "
"data members. Unpacker needs fixing.");
/* FairRunOnline::Init() ignores the return value from
* GetSource()->InitUnpackers(); so do a FATAL error.
*/
R3BLOG(fatal, "ext_data_clnt::setup() mapping failure may "
"cause unexpected analysis results due to missing "
"data members. Unpacker needs fixing.");
return kFALSE;
}

Expand Down

0 comments on commit bc12fa1

Please sign in to comment.