Uses of Enum Class
dev.tachyonmcp.api.server.domain.LoggingLevel
Packages that use LoggingLevel
Package
Description
Runtime abstractions for MCP request processing contexts and executors.
Domain types for MCP protocol data structures.
Protocol interfaces and domain types for MCP server and client interaction.
Generated JSON-RPC codecs for the MCP 2025-11-25 protocol version.
Internal server engine — request dispatch, session lifecycle, handler wiring.
Session management — dispatch contexts, session lifecycle events, and session storage.
-
Uses of LoggingLevel in dev.tachyonmcp.api.runtime
Methods in dev.tachyonmcp.api.runtime with parameters of type LoggingLevelModifier and TypeMethodDescriptiondefault voidNotifications.log(LoggingLevel level, @Nullable Object data) Emits a structured MCP log message without a logger name.voidNotifications.log(LoggingLevel level, @Nullable String logger, @Nullable Object data) Emits a structured MCP log message. -
Uses of LoggingLevel in dev.tachyonmcp.api.server.domain
Methods in dev.tachyonmcp.api.server.domain that return LoggingLevelModifier and TypeMethodDescriptionstatic LoggingLevelParses a logging level from its wire-level string.static LoggingLevelReturns the enum constant of this class with the specified name.static LoggingLevel[]LoggingLevel.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of LoggingLevel in dev.tachyonmcp.core.protocol
Methods in dev.tachyonmcp.core.protocol that return LoggingLevelModifier and TypeMethodDescriptionProtocolRequestMapper.loggingLevel(@Nullable Object params) Extracts the requestedLoggingLevelfromlogging/setLevelparams.@Nullable LoggingLevelProtocolRequestMapper.permittedLogLevel(@Nullable Object params) Extracts the client's permittedLoggingLevel, ornullif unset. -
Uses of LoggingLevel in dev.tachyonmcp.core.protocol.mcp.v2025_11_25.codecs
Methods in dev.tachyonmcp.core.protocol.mcp.v2025_11_25.codecs that return LoggingLevelModifier and TypeMethodDescriptionMcpRequestMapper.loggingLevel(@Nullable Object params) @Nullable LoggingLevelMcpRequestMapper.permittedLogLevel(@Nullable Object params) static LoggingLevelLoggingLevelMapper.toDomain(LoggingLevel protocol) Maps a protocol logging level to the domain type.Methods in dev.tachyonmcp.core.protocol.mcp.v2025_11_25.codecs with parameters of type LoggingLevelModifier and TypeMethodDescriptionstatic LoggingLevelLoggingLevelMapper.toProtocol(LoggingLevel domain) Maps a domain logging level to the protocol type. -
Uses of LoggingLevel in dev.tachyonmcp.core.server.internal
Methods in dev.tachyonmcp.core.server.internal that return LoggingLevelModifier and TypeMethodDescription@Nullable LoggingLevelServerEngine.getLoggingLevel(String sessionId) Returns the logging level for a session, ornullif not set.Methods in dev.tachyonmcp.core.server.internal with parameters of type LoggingLevelModifier and TypeMethodDescriptionNotificationLogSupport.logParams(LoggingLevel level, @Nullable String logger, @Nullable Object data) Builds thenotifications/messageparams in wire order.voidServerEngine.setLoggingLevel(String sessionId, LoggingLevel level) Sets the logging level for a session. -
Uses of LoggingLevel in dev.tachyonmcp.core.server.session
Methods in dev.tachyonmcp.core.server.session that return LoggingLevelModifier and TypeMethodDescription@Nullable LoggingLevelDefaultDispatchContext.getLoggingLevel()@Nullable LoggingLevelDispatchContext.getLoggingLevel()Returns the logging level for the current session, ornullwhen unset or session-less.@Nullable LoggingLevelNoopInteractionContext.getLoggingLevel()@Nullable LoggingLevelDefaultDispatchContext.getPermittedLogLevel()@Nullable LoggingLevelDispatchContext.getPermittedLogLevel()Returns the log level this specific request permits, ornullif it set none.@Nullable LoggingLevelNoopInteractionContext.getPermittedLogLevel()Methods in dev.tachyonmcp.core.server.session with parameters of type LoggingLevelModifier and TypeMethodDescriptionvoidDefaultDispatchContext.setLoggingLevel(LoggingLevel level) voidDispatchContext.setLoggingLevel(LoggingLevel level) Sets the logging level for the current session; no-op when no session is bound.voidNoopInteractionContext.setLoggingLevel(LoggingLevel level) voidDefaultDispatchContext.setPermittedLogLevel(@Nullable LoggingLevel level) voidDispatchContext.setPermittedLogLevel(@Nullable LoggingLevel level) Sets the log level this specific request permits (from_meta.../logLevel, protocols without sessions).voidNoopInteractionContext.setPermittedLogLevel(@Nullable LoggingLevel level)