weather-monitor: renamed logger object
This change renames the logger object used in weather-monitor from "log" to "LOG" in order to circumvent potential naming conflicts with e.g. the log() function from e.g. math.h/cmath. Change-Id: I73758374f76ea5c29cb636ae3e0685a4a4cceacb
This commit is contained in:
@ -15,7 +15,7 @@ class WeatherMonitorExperiment : public fail::ExperimentFlow {
|
||||
std::string m_variant, m_benchmark;
|
||||
static const std::string dir_images;
|
||||
static const std::string dir_prerequisites;
|
||||
fail::Logger log;
|
||||
fail::Logger LOG;
|
||||
fail::BPSingleListener bp;
|
||||
|
||||
std::string filename_elf(const std::string& variant, const std::string& benchmark);
|
||||
@ -34,7 +34,7 @@ class WeatherMonitorExperiment : public fail::ExperimentFlow {
|
||||
bool faultInjection();
|
||||
|
||||
public:
|
||||
WeatherMonitorExperiment() : log("Weathermonitor", false) {}
|
||||
WeatherMonitorExperiment() : LOG("Weathermonitor", false) {}
|
||||
bool run();
|
||||
void parseOptions(void);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user