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:
Michael Lenz
2014-06-27 16:26:07 +02:00
parent daedb5a4d6
commit a292e192ec
2 changed files with 38 additions and 38 deletions

View File

@ -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);
};