Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Remote Log ServerNew to Visual Studio Code? Get it now.
Remote Log Server

Remote Log Server

Andreas Pardeike

|
1,151 installs
| (0) | Free
Accept log data on a socket and see the log in realtime in a document without touching the disk
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Remote Log Server README

Use your Visual Studio Code editor as a log destination. Creates no files on disk and works for remote logging too.

Usage

Press <CTRL+F12> to start a server, and connect to the server via telnet or socket programms sending text.

Example python code:

import socket
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
    s.connect(('localhost', 8888))
    s.send('Hello World\n'.encode())

You can also use telnet localhost 8888 from bash. Please note that the server does not run in line buffering mode so you can send partial lines.

Features

  1. [CTRL+F12] to start the server
  2. [SHIFT+F12] to stop the server
  3. [F12] to toggle the server (pause/resume)

Extension Settings

This extension contributes the following settings:

  • RemoteLogServer.host: The host address of the remote control server, default = 'localhost'.
  • RemoteLogServer.port: The tcp/ip port the remote control server listens to, default = 9527.

Enjoy!

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft