X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Flogger.cxx;h=31f0a59c7d54c6473c847fa8eb0bd05ab7902f2c;hb=a704a6208131cad4f12123a72acdb1fb3dc6658f;hp=2a4561c7300610243673a77866383b08a86550eb;hpb=98e6b8212aff6004d004070745e4ea9397f8d6c6;p=flightgear.git diff --git a/src/Main/logger.cxx b/src/Main/logger.cxx index 2a4561c73..31f0a59c7 100644 --- a/src/Main/logger.cxx +++ b/src/Main/logger.cxx @@ -38,7 +38,7 @@ FGLogger::init () if (logging == 0) return; - vector children = logging->getChildren("log"); + std::vector children = logging->getChildren("log"); for (unsigned int i = 0; i < children.size(); i++) { SGPropertyNode * child = children[i]; @@ -64,9 +64,9 @@ FGLogger::init () log.interval_ms = child->getLongValue("interval-ms"); log.last_time_ms = globals->get_sim_time_sec() * 1000; log.delimiter = delimiter.c_str()[0]; - log.output = new ofstream(filename.c_str()); + log.output = new std::ofstream(filename.c_str()); if (!log.output) { - SG_LOG(SG_INPUT, SG_ALERT, "Cannot write log to " << filename); + SG_LOG(SG_GENERAL, SG_ALERT, "Cannot write log to " << filename); continue; }