Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/file.cc')
-rw-r--r--src/common/file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file.cc b/src/common/file.cc
index 73537ec..6f4d6d4 100644
--- a/src/common/file.cc
+++ b/src/common/file.cc
@@ -59,7 +59,7 @@ void File::open(const char * filename, ios_base::openmode mode)
std::ifstream::open(fn.c_str(), mode);
if (!this->is_open()) {
- conmesg << "File could not open " << filename << std::endl;
+ conwarn << "Could not open " << filename << std::endl;
} else {
condebug << "File opened " << fn << std::endl;
}