Skip to content

Commit 684aa04

Browse files
committed
[ntuple] Merger: replace Fatal with R__LOG_FATAL
1 parent 13fe06f commit 684aa04

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tree/ntuple/src/RNTupleMerger.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -656,11 +656,11 @@ static void GenerateZeroPagesForColumns(size_t nEntriesToGenerate, std::span<con
656656
const auto structure = field->GetStructure();
657657

658658
if (structure == ROOT::ENTupleStructure::kStreamer) {
659-
Fatal(
660-
"RNTuple::Merge",
661-
"Destination RNTuple contains a streamer field (%s) that is not present in one of the sources. "
662-
"Creating a default value for a streamer field is ill-defined, therefore the merging process will abort.",
663-
field->GetFieldName().c_str());
659+
R__LOG_FATAL(NTupleMergeLog())
660+
<< "RNTuple::Merge"
661+
"Destination RNTuple contains a streamer field (%s) that is not present in one of the sources. "
662+
"Creating a default value for a streamer field is ill-defined, therefore the merging process will abort."
663+
<< field->GetFieldName();
664664
continue;
665665
}
666666

0 commit comments

Comments
 (0)