Description

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);
Steps to Reproduce

N/A - Source Code issue

Have Comments or More Details?

There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-37583 in the post.

0
Login to Vote

Fixed
ComponentUE - Foundation - Core
Affects Versions4.114.12.54.13.14.14
Target Fix4.16
Fix Commit3250599
Main Commit3283649
CreatedOct 20, 2016
ResolvedJan 9, 2017
UpdatedApr 27, 2018