fix caching info in log
diff --git a/compiler.jx/downloads.xml b/compiler.jx/downloads.xml
index 5048aa8..f63aac3 100644
--- a/compiler.jx/downloads.xml
+++ b/compiler.jx/downloads.xml
@@ -181,7 +181,7 @@
     <target name="copy-if-cached" if="found-in-cache">
 		<!-- this string comes from the FlexJS en_US.properties because for now, this
 		     target won't get called unless this script is called from the FlexJS install -->
-		<echo>${INFO_USING_CACHED_FILE} ${file}</echo>
+		<echo>${INFO_USING_CACHED_FILE} ${downloadCacheFolder}/${srcFolder}/${srcFile}</echo>
 		<copy file="${downloadCacheFolder}/${srcFolder}/${srcFile}" tofile="${dest}" overwrite="true" />
 	</target> 
 	
diff --git a/compiler/downloads.xml b/compiler/downloads.xml
index 77cb756..1b25be9 100644
--- a/compiler/downloads.xml
+++ b/compiler/downloads.xml
@@ -216,7 +216,7 @@
     <target name="copy-if-cached" if="found-in-cache">
 		<!-- this string comes from the FlexJS en_US.properties because for now, this
 		     target won't get called unless this script is called from the FlexJS install -->
-		<echo>${INFO_USING_CACHED_FILE} ${file}</echo>
+		<echo>${INFO_USING_CACHED_FILE} ${downloadCacheFolder}/${cacheFolder}/${srcFile}</echo>
 		<copy file="${downloadCacheFolder}/${cacheFolder}/${srcFile}" tofile="${dest}" overwrite="true"/>
 	</target>