File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1- """ This script is the dedicated entry point for the Codeflash Language Server.
2- It initializes the server and redirects its logs to stderr so that the
3- VS Code client can display them in the output channel.
1+ # This script is the dedicated entry point for the Codeflash Language Server.
2+ # It initializes the server and redirects its logs to stderr so that the
3+ # VS Code client can display them in the output channel.
44
5- This script is run by the VS Code extension and is not intended to be
6- executed directly by users.
7- """
5+ # This script is run by the VS Code extension and is not intended to be
6+ # executed directly by users.
87
98import logging
109import sys
1312
1413
1514# Configure logging to stderr for VS Code output channel
16- def setup_logging ():
15+ def setup_logging () -> logging . Logger :
1716 # Clear any existing handlers to prevent conflicts
1817 root_logger = logging .getLogger ()
1918 root_logger .handlers .clear ()
You can’t perform that action at this time.
0 commit comments