Skip to content

Commit 86b04aa

Browse files
authored
Don't include stacktrace in class load failure log (#2260)
1 parent a809f4d commit 86b04aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-components/src/main/java/com/google/firebase/components/ComponentDiscovery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private static ComponentRegistrar instantiate(String registrarName) {
125125
}
126126
return (ComponentRegistrar) loadedClass.getDeclaredConstructor().newInstance();
127127
} catch (ClassNotFoundException e) {
128-
Log.w(TAG, String.format("Class %s is not an found.", registrarName), e);
128+
Log.w(TAG, String.format("Class %s is not an found.", registrarName));
129129
return null;
130130
} catch (IllegalAccessException e) {
131131
throw new InvalidRegistrarException(

0 commit comments

Comments
 (0)