Skip to content

Commit

Permalink
since too long data description is now safe, no need to warn (#2301)
Browse files Browse the repository at this point in the history
I think it's enough to have a debug log now, the warnings generate quite a lot of noise at the moment, while "too long" description is now safe to have.
  • Loading branch information
knopers8 committed May 27, 2024
1 parent 0d9ceee commit 7a96e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/src/HashDataDescription.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ auto createDataDescription(const std::string& name, size_t hashLength) -> o2::he
return description;
} else {
const auto descriptionWithHash = createDescriptionWithHash(name, hashLength);
ILOG(Warning, Devel) << "Too long data description name [" << name << "] changed to [" << descriptionWithHash << "]" << ENDM;
ILOG(Debug, Devel) << "Too long data description name [" << name << "] changed to [" << descriptionWithHash << "]" << ENDM;
description.runtimeInit(descriptionWithHash.c_str());
return description;
}
Expand Down

0 comments on commit 7a96e8a

Please sign in to comment.