Package io.smallrye.graphql.entry.http
Interface SmallRyeGraphQLServletLogging
-
- All Known Implementing Classes:
SmallRyeGraphQLServletLogging_$logger
@MessageLogger(projectCode="SRGQL") public interface SmallRyeGraphQLServletLogging
-
-
Field Summary
Fields Modifier and Type Field Description static SmallRyeGraphQLServletLogginglog
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcannotCreateUrl(Exception e)voidcannotProcessFile(String path, Exception cause)voidcouldNotProcessUrl(URL url, Exception e)voiddestroyed()voidgeneratingIndex()voidignoringUrl(URL url)voidinitialized()voidioException(Exception ex)voidjsonInput(String input)voidloadedIndexFrom(String path)voidprocessingFile(String path)voidunableToLogReader(Reader reader)
-
-
-
Field Detail
-
log
static final SmallRyeGraphQLServletLogging log
-
-
Method Detail
-
loadedIndexFrom
@LogMessage(level=INFO) @Message(id=20000, value="Loaded index from [%s]") void loadedIndexFrom(String path)
-
generatingIndex
@LogMessage(level=INFO) @Message(id=20001, value="No jandex index available, let\'s generate one...") void generatingIndex()
-
processingFile
@LogMessage(level=DEBUG) @Message(id=20002, value="Processing file [%s]") void processingFile(String path)
-
cannotProcessFile
@LogMessage(level=DEBUG) @Message(id=20003, value="Cannot process file [%s]") void cannotProcessFile(String path, @Cause Exception cause)
-
cannotCreateUrl
@LogMessage(level=WARN) @Message(id=20004, value="Cannot create URL from a JAR/WAR file included in the classpath") void cannotCreateUrl(@Cause Exception e)
-
ignoringUrl
@LogMessage(level=WARN) @Message(id=20005, value="Ignoring url [%s] as it\'s not a jar, war or folder") void ignoringUrl(URL url)
-
couldNotProcessUrl
@LogMessage(level=WARN) @Message(id=20006, value="Could not process url [%s] while indexing files") void couldNotProcessUrl(URL url, @Cause Exception e)
-
initialized
@LogMessage(level=INFO) @Message(id=20007, value="SmallRye GraphQL initialized") void initialized()
-
destroyed
@LogMessage(level=INFO) @Message(id=20008, value="SmallRye GraphQL destroyed") void destroyed()
-
ioException
@LogMessage(level=ERROR) @Message(id=21000, value="IO Exception occurred") void ioException(@Cause Exception ex)
-
jsonInput
@LogMessage(level=DEBUG) @Message(id=21001, value="JSON input: %s") void jsonInput(String input)
-
unableToLogReader
@LogMessage(level=DEBUG) @Message(id=21002, value="Unable to log reader %s") void unableToLogReader(Reader reader)
-
-