Logger returns the server's logger instance. The logger is used for debugging and diagnostic output. It should write to a file or os.Stderr, never to os.Stdout (which is reserved for LSP protocol communication). Returns: - *log.Logger: The server's logger, or a logger that discards output if the s
()
| 533 | // |
| 534 | // server.Logger().Printf("Processing request: %s", method) |
| 535 | func (s *Server) Logger() *log.Logger { |
| 536 | return s.logger |
| 537 | } |
| 538 | |
| 539 | // SetShutdown marks the server for shutdown. |
| 540 | // |
no outgoing calls
no test coverage detected