Skip to content

Commit f23f696

Browse files
committed
Log level to info for response request errors
1 parent 0f716db commit f23f696

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/com/intellij/lang/jsgraphql/ide/editor/GraphQLIntrospectionService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ void createOrUpdateIntrospectionOutputFile(@NotNull String schemaText,
424424
}
425425
});
426426
} catch (IOException ioe) {
427-
LOG.warn(ioe);
427+
LOG.info(ioe);
428428
Notifications.Bus.notify(new Notification(
429429
GraphQLNotificationUtil.NOTIFICATION_GROUP_ID,
430430
GraphQLBundle.message("graphql.notification.error.title"),

src/main/com/intellij/lang/jsgraphql/ide/notifications/GraphQLNotificationUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static void showGraphQLRequestErrorNotification(@NotNull Project project,
5252
@NotNull Exception error,
5353
@NotNull NotificationType notificationType,
5454
@Nullable NotificationAction action) {
55-
LOG.warn(error);
55+
LOG.info(error);
5656

5757
boolean isSSLError = error instanceof SSLException;
5858
final String message = isSSLError

0 commit comments

Comments
 (0)