From 97d8ea26b77543703ee5dcd5cea8061f2234ef0c Mon Sep 17 00:00:00 2001 From: "U-BASIS\\dgrove" Date: Thu, 27 Sep 2018 12:56:27 -0400 Subject: [PATCH] Changed exception block. --- InternalPythonModules/android/cachelocation.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/InternalPythonModules/android/cachelocation.py b/InternalPythonModules/android/cachelocation.py index 7eb975356f..49654c4eb3 100644 --- a/InternalPythonModules/android/cachelocation.py +++ b/InternalPythonModules/android/cachelocation.py @@ -66,9 +66,8 @@ class CacheLocationAnalyzer(general.AndroidComponentAnalyzer): ContentUtils.writeToFile(abstractFile, jFile, context.dataSourceIngestIsCancelled) self.__findGeoLocationsInFile(jFile, abstractFile) except Exception as ex: - # Error parsing cached location files. - # Catch and proceed to the next file in the loop. - pass + self._logger.log(Level.SEVERE, "Error parsing cached location files", ex) + self._logger.log(Level.SEVERE, traceback.format_exc()) except TskCoreException as ex: # Error finding cached location files. pass