Skip to content

Commit

Permalink
Merge pull request #144 from art-daq/rrivera/minorParameterNameAndPri…
Browse files Browse the repository at this point in the history
…ntoutImprovement

Minor parameter name and printout improvement
  • Loading branch information
rrivera747 committed Mar 5, 2024
2 parents b11dc84 + c1d3cba commit 9d7af02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion otsdaq/ConfigurationInterface/ConfigurationManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class ConfigurationManager
double runTimeSeconds() {return artdaq::TimeUtils::GetElapsedTime(startClockTime_);}; //((double)(clock()-startClockTime_))/CLOCKS_PER_SEC;};

void loadTableGroup (
const std::string& configGroupName,
const std::string& tableGroupName,
const TableGroupKey& tableGroupKey,
bool doActivate = false,
std::map<std::string, TableVersion>* groupMembers = 0,
Expand Down
2 changes: 1 addition & 1 deletion otsdaq/Macros/StringMacros.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ char* StringMacros::otsGetEnvironmentVarable(const char* name, const std::string
char* environmentVariablePtr = getenv(name);
if(!environmentVariablePtr)
{
__SS__ << "Environment variable '" << name << "' not defined at " << location << "[" << line << "]" << __E__;
__SS__ << "Environment variable '" << name << "' not defined at " << location << ":" << line << __E__;
ss << "\n\n" << StringMacros::stackTrace() << __E__;
__SS_ONLY_THROW__;
}
Expand Down

0 comments on commit 9d7af02

Please sign in to comment.