Module: McpStdioRuby::AppLogger
- Defined in:
- lib/mcp_stdio_ruby/app_logger.rb
Overview
Provides a centralized logger for the application.
Class Attribute Summary collapse
Class Attribute Details
.logger ⇒ Object
9 10 11 12 13 |
# File 'lib/mcp_stdio_ruby/app_logger.rb', line 9 def logger @logger ||= Logger.new($stderr).tap do |l| l.level = Logger::INFO end end |