diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-05-09 20:54:07 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-05-09 20:54:16 +0200 |
commit | af4acb5b1163089fe727000b39cefb4fc799f1db (patch) | |
tree | 5d46c1bc87ccfbe76a28569b0ff3ec652ce9ee61 /modules/mono/mono_gd/gd_mono_log.cpp | |
parent | 61306eb830cba932c57bc3e83ea462a49f2ebd97 (diff) | |
download | redot-engine-af4acb5b1163089fe727000b39cefb4fc799f1db.tar.gz |
C#/Mono: Check assembly version when loading
Not sure if we should check revision too, but this is good enough for what we want.
This will be needed to load the correct Microsoft.Build when we switch to the nuget version.
Diffstat (limited to 'modules/mono/mono_gd/gd_mono_log.cpp')
-rw-r--r-- | modules/mono/mono_gd/gd_mono_log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono_log.cpp b/modules/mono/mono_gd/gd_mono_log.cpp index ca16c2b76a..b56350ae1b 100644 --- a/modules/mono/mono_gd/gd_mono_log.cpp +++ b/modules/mono/mono_gd/gd_mono_log.cpp @@ -175,7 +175,7 @@ void GDMonoLog::initialize() { log_level_id = get_log_level_id(log_level.get_data()); if (log_file) { - OS::get_singleton()->print("Mono: Logfile is: %s\n", log_file_path.utf8().get_data()); + OS::get_singleton()->print("Mono: Log file is: '%s'\n", log_file_path.utf8().get_data()); mono_trace_set_log_handler(mono_log_callback, this); } else { OS::get_singleton()->printerr("Mono: No log file, using default log handler\n"); |