diff options
Diffstat (limited to 'src/filesystem/filesystem.cc')
-rw-r--r-- | src/filesystem/filesystem.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filesystem/filesystem.cc b/src/filesystem/filesystem.cc index b720198..5d3ed40 100644 --- a/src/filesystem/filesystem.cc +++ b/src/filesystem/filesystem.cc @@ -14,7 +14,7 @@ std::string filesystem::basedir = ""; std::string filesystem::moddir = ""; void filesystem::init() { - con_debug << "Initializing filesystem..." << std::endl; + con_print << "Initializing filesystem..." << std::endl; // FIXME datadir should by set by ./configure and read from config.h @@ -33,6 +33,6 @@ void filesystem::init() { } void filesystem::shutdown() { - con_debug << "Shutting down filesystem..." << std::endl; + con_print << "Shutting down filesystem..." << std::endl; } |