Skip to content
Merged
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
6 changes: 5 additions & 1 deletion Common/SimConfig/src/SimConfig.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,11 @@ bool SimConfig::determineActiveModulesList(const std::string& version, std::vect
return false;
}
modules = map[version];
LOGP(info, "Running with official detector version '{}'", version);
static std::string last_version{}; // prevent multiple printouts of same message
if (last_version != version) {
LOGP(info, "Running with official detector version '{}'", version);
last_version = version;
}
}
// check if specified modules are in list
if (inputargs.size() != 1 || inputargs[0] != "all") {
Expand Down