diff options
Diffstat (limited to 'tuiclient/log.cpp')
-rw-r--r-- | tuiclient/log.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tuiclient/log.cpp b/tuiclient/log.cpp index ed2cb19..d9ee588 100644 --- a/tuiclient/log.cpp +++ b/tuiclient/log.cpp @@ -70,7 +70,8 @@ void debug_no_msg(string debug_msg_text){ ofstream file; file.exceptions (ofstream::failbit | ofstream::badbit); try{ - file.open((settings.logs_dir+"/"+settings.debug_log_file).c_str(), ios::app); +// file.open((settings.logs_dir+"/"+settings.debug_log_file).c_str(), ios::app); + file.open("./logs/debug.log", ios::app); } catch(...){ error_log("Error opening "+settings.logs_dir+"/"+settings.debug_log_file+"."); |