diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-03-10 15:49:38 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-03-10 15:49:38 +0200 |
commit | 9c5e422d3a5fc3784d261a1effdb94a44b84a41c (patch) | |
tree | f6e2fe229a98d168fa76a4126df2879f7c840fa4 /src/auth.cpp | |
parent | 5e001410059d3768be496bb7e67181d224db657e (diff) | |
download | minetest-9c5e422d3a5fc3784d261a1effdb94a44b84a41c.tar.gz minetest-9c5e422d3a5fc3784d261a1effdb94a44b84a41c.tar.bz2 minetest-9c5e422d3a5fc3784d261a1effdb94a44b84a41c.zip |
Ban and Auth managers use infostream rather than dstream
Diffstat (limited to 'src/auth.cpp')
-rw-r--r-- | src/auth.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/auth.cpp b/src/auth.cpp index 7326a6042..fce521e13 100644 --- a/src/auth.cpp +++ b/src/auth.cpp @@ -23,7 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc., //#include "main.h" // for g_settings #include <sstream> #include "strfnd.h" -#include "debug.h" +#include "log.h" std::set<std::string> privsToSet(u64 privs) { @@ -123,7 +123,7 @@ AuthManager::AuthManager(const std::string &authfilepath): } catch(SerializationError &e) { - dstream<<"WARNING: AuthManager: creating " + infostream<<"WARNING: AuthManager: creating " <<m_authfilepath<<std::endl; } } @@ -137,11 +137,11 @@ void AuthManager::load() { JMutexAutoLock lock(m_mutex); - dstream<<"AuthManager: loading from "<<m_authfilepath<<std::endl; + infostream<<"AuthManager: loading from "<<m_authfilepath<<std::endl; std::ifstream is(m_authfilepath.c_str(), std::ios::binary); if(is.good() == false) { - dstream<<"AuthManager: failed loading from "<<m_authfilepath<<std::endl; + infostream<<"AuthManager: failed loading from "<<m_authfilepath<<std::endl; throw SerializationError("AuthManager::load(): Couldn't open file"); } @@ -183,11 +183,11 @@ void AuthManager::save() { JMutexAutoLock lock(m_mutex); - dstream<<"AuthManager: saving to "<<m_authfilepath<<std::endl; + infostream<<"AuthManager: saving to "<<m_authfilepath<<std::endl; std::ofstream os(m_authfilepath.c_str(), std::ios::binary); if(os.good() == false) { - dstream<<"AuthManager: failed saving to "<<m_authfilepath<<std::endl; + infostream<<"AuthManager: failed saving to "<<m_authfilepath<<std::endl; throw SerializationError("AuthManager::save(): Couldn't open file"); } |