You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Only print message for get_modified_time() failure when in verbose mode
This error message was often displayed for no good reason when PCK files were loaded in the editor. Since file modification dates are secondary metadata, it's not very important if it can't be retrieved successfully anyway.
This commit is contained in:
@@ -307,7 +307,8 @@ uint64_t FileAccessUnix::_get_modified_time(const String &p_file) {
|
||||
if (!err) {
|
||||
return flags.st_mtime;
|
||||
} else {
|
||||
ERR_FAIL_V_MSG(0, "Failed to get modified time for: " + p_file + ".");
|
||||
print_verbose("Failed to get modified time for: " + p_file + "");
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user