Skip to content

Commit 18c8c0b

Browse files
committed
Output the exception.
1 parent 91918d0 commit 18c8c0b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/client/PythonAnalysisEngine.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,7 @@ public IClassHierarchy buildClassHierarchy() {
168168
try {
169169
Util.checkForFrontEndErrors(cha);
170170
} catch (WalaException e) {
171-
logger.log(
172-
Level.WARNING,
173-
e,
174-
() -> "Encountered WALA exception, most likely from front-end parsing errors.");
171+
logger.log(Level.WARNING, e, () -> "Encountered WALA exception: " + e);
175172
}
176173

177174
setClassHierarchy(cha);

0 commit comments

Comments
 (0)