From: Torsten Dreyer Date: Wed, 5 Aug 2015 07:26:46 +0000 (+0200) Subject: Fix #1783: repeated error message on console X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b7c7f66bf35624bf6723737ec7c2884bec3f5463;p=simgear.git Fix #1783: repeated error message on console This downgrades the "file not found" message to a warning. --- diff --git a/simgear/misc/sg_path.cxx b/simgear/misc/sg_path.cxx index 756bfc22..8255fa6a 100644 --- a/simgear/misc/sg_path.cxx +++ b/simgear/misc/sg_path.cxx @@ -849,7 +849,7 @@ std::string SGPath::realpath() const #endif if (!buf) { - SG_LOG(SG_IO, SG_ALERT, "ERROR: The path '" << path << "' does not exist in the file system."); + SG_LOG(SG_IO, SG_WARN, "ERROR: The path '" << path << "' does not exist in the file system."); return path; } std::string p(buf);