Skip to content

Commit

Permalink
Log error instead of warning
Browse files Browse the repository at this point in the history
  • Loading branch information
irgendeinich committed Oct 18, 2019
1 parent 7e1cbcd commit f6c1c2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ private void configureEditableAnnotationTypes(@Nullable final ReadableArray edit
try {
parsedTypes.add(AnnotationType.valueOf(annotationType.toUpperCase(Locale.ENGLISH)));
} catch (IllegalArgumentException ex) {
Log.w(LOG_TAG,
Log.e(LOG_TAG,
String.format("Illegal option %s provided for configuration option %s. Skipping this %s.", annotationType, EDITABLE_ANNOTATION_TYPES, annotationType),
ex);
}
Expand Down

0 comments on commit f6c1c2d

Please sign in to comment.