Package io.smallrye.graphql.client.impl
Interface SmallRyeGraphQLClientLogging
-
- All Known Implementing Classes:
SmallRyeGraphQLClientLogging_$logger
@MessageLogger(projectCode="SRGQL") public interface SmallRyeGraphQLClientLogging
-
-
Field Summary
Fields Modifier and Type Field Description static SmallRyeGraphQLClientLogginglog
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapisNotSet()voidnoDataInResponse()voidunknownExtensionType(jakarta.json.JsonValue.ValueType valueType)voidunknownPathSegmentType(jakarta.json.JsonValue.ValueType type)
-
-
-
Field Detail
-
log
static final SmallRyeGraphQLClientLogging log
-
-
Method Detail
-
noDataInResponse
@LogMessage(level=WARN) @Message(id=30000, value="Received response containing no data") void noDataInResponse()
-
apisNotSet
@LogMessage(level=WARN) @Message(id=30001, value="The runtime did not set the `apis` field in `GraphQLClientsConfiguration`, so the bean is unable to locate configurations of typesafe clients") void apisNotSet()
-
unknownPathSegmentType
@LogMessage(level=WARN) @Message(id=30002, value="Unsupported path segment type %s (expecting only String or Number), ignoring") void unknownPathSegmentType(jakarta.json.JsonValue.ValueType type)
-
unknownExtensionType
@LogMessage(level=WARN) @Message(id=30003, value="Unsupported extension type %s, ignoring") void unknownExtensionType(jakarta.json.JsonValue.ValueType valueType)
-
-