[solved] Word Loading is repeated in the unit castledownload_asynchronous.inc in the procedure TCastleDownload.Start

Hellow

whene use LogAllLoading and load Something i have log like this
Loading: Loading “file …”
word Loading is repeated

castledownload_asynchronous.inc at TCastleDownload.Start

  if LogAllLoading then
    WritelnLog('Loading', 'Loading "%s"', [UriDisplay(FFinalUrl)]);

I think the second word Loading is unnecessary

  if LogAllLoading then
    WritelnLog('Loading', '"%s"', [UriDisplay(FFinalUrl)]);

Fixed in Don't repeat "Loading" word · castle-engine/castle-engine@7c73828 · GitHub , thank you!

(Sorry it took so long to do this trivial thing – I have too long TODO lists :slight_smile: but I forget nothing! :slight_smile: ).

1 Like