Merge pull request #28400 from neikeq/issue-28388

Fix invalid mono log file name on Windows
This commit is contained in:
Ignacio Roldán Etcheverry 2019-04-25 01:19:18 +02:00 committed by GitHub
commit e9be53acd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,7 +172,7 @@ void GDMonoLog::initialize() {
OS::Time time_now = OS::get_singleton()->get_time();
int pid = OS::get_singleton()->get_process_id();
String log_file_name = format("%d-%02d-%02d %02d:%02d:%02d (%d).txt",
String log_file_name = format("%d_%02d_%02d %02d.%02d.%02d (%d).txt",
date_now.year, date_now.month, date_now.day,
time_now.hour, time_now.min, time_now.sec, pid);