A licensee has pointed out that a log message in ExclusiveLoadPackageTimeTracker at line 191 is saying the opposite of what it means. This is the line in question:
UE_LOG(LogLoad, Log, TEXT(" ... skipped %d assets slower than %.1fms totaling %.1fms"), LowThresholdCount, LowTimeThreshold * 1000, TotalLowTime * 1000);
The log message should denote that it is skipping over these assets due to them loading faster than the displayed time, not slower. The licensee proposed a replacement:
UE_LOG(LogLoad, Log, TEXT(" ... skipped %d assets that loaded in less time than %.1fms totaling %.1fms"), LowThresholdCount, LowTimeThreshold * 1000, TotalLowTime * 1000);
N/A - Source Code issue
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-37583 in the post.
0 |
Fix Commit | 3250599 |
---|---|
Main Commit | 3283649 |
Created | Oct 20, 2016 |
---|---|
Resolved | Jan 9, 2017 |
Updated | Apr 27, 2018 |
3096 - sanjay-nambiar |