1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Add a third log output interface method

This commit is contained in:
Perttu Ahola 2011-11-27 14:28:54 +02:00
parent c449e5f20a
commit 013921782b
2 changed files with 3 additions and 0 deletions

View file

@ -100,6 +100,7 @@ void log_printline(enum LogMessageLevel lev, const std::string &text)
i != log_outputs[lev].end(); i++){
ILogOutput *out = *i;
out->printLog(os.str());
out->printLog(os.str(), lev);
out->printLog(lev, text);
}
}