Disable logging until the logs location is sorted out

Temporary workaround for #12277.
This commit is contained in:
Rémi Verschelde
2017-10-29 15:20:29 +01:00
parent f327fba627
commit 87694d1884
6 changed files with 18 additions and 6 deletions

View File

@@ -186,7 +186,9 @@ void OSUWP::initialize_core() {
void OSUWP::initialize_logger() {
Vector<Logger *> loggers;
loggers.push_back(memnew(WindowsTerminalLogger));
loggers.push_back(memnew(RotatedFileLogger("user://logs/log.txt")));
// FIXME: Reenable once we figure out how to get this properly in user://
// instead of littering the user's working dirs (res:// + pwd) with log files (GH-12277)
//loggers.push_back(memnew(RotatedFileLogger("user://logs/log.txt")));
_set_logger(memnew(CompositeLogger(loggers)));
}