Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Tweak DD4hep log level #3778

Merged
merged 3 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class DD4hepGeometryService {
/// Log level for the geometry service.
Acts::Logging::Level logLevel = Acts::Logging::Level::INFO;
/// Log level for DD4hep itself
Acts::Logging::Level dd4hepLogLevel = Acts::Logging::Level::INFO;
Acts::Logging::Level dd4hepLogLevel = Acts::Logging::Level::WARNING;
/// XML-file with the detector description
std::vector<std::string> xmlFileNames;
/// The name of the service
Expand Down
2 changes: 1 addition & 1 deletion Examples/Python/python/acts/examples/odd.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def geoid_hook(geoid, surface):
dd4hepConfig = acts.examples.dd4hep.DD4hepGeometryService.Config(
xmlFileNames=[str(odd_xml)],
logLevel=customLogLevel(),
dd4hepLogLevel=customLogLevel(),
dd4hepLogLevel=customLogLevel(minLevel=acts.logging.WARNING),
geometryIdentifierHook=acts.GeometryIdentifierHook(geoid_hook),
)
detector = acts.examples.dd4hep.DD4hepDetector()
Expand Down
Loading