diff --git a/otsdaq/ConfigurationInterface/ConfigurationManager.h b/otsdaq/ConfigurationInterface/ConfigurationManager.h index c731a488..b1f8abd8 100644 --- a/otsdaq/ConfigurationInterface/ConfigurationManager.h +++ b/otsdaq/ConfigurationInterface/ConfigurationManager.h @@ -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* groupMembers = 0, diff --git a/otsdaq/Macros/StringMacros.cc b/otsdaq/Macros/StringMacros.cc index 4224545d..d910f05e 100644 --- a/otsdaq/Macros/StringMacros.cc +++ b/otsdaq/Macros/StringMacros.cc @@ -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__; }