Quick Log Helper is a simple yet powerful VS Code extension to insert, select, and delete console.log, console.warn, and console.error statements quickly — supporting multiple programming languages including JavaScript, TypeScript, Python, Java, and more.
🔹 Insert standard log statements with or without line number.
🟡 Add warn statements to highlight non-critical alerts with context.
✂️ Select or delete all logs of a specific type.
🔴Add error logs for catching and debugging critical failures.
⚙️ Works with popular languages (JS/TS, Python, Java, C++, Go, PHP, etc).
⚡️ Commands & Shortcuts
Command
Description
macOS Shortcut
Win/Linux Shortcut
Insert Console Log
Insert console.log()
Shift + Cmd + J
Shift + Ctrl + J
Insert Console Log with Line
Insert console.log(' (line: 10)'); with line context
Shift + Cmd + L
Shift + Ctrl + L
Insert Warn Log
Insert console.warn() with line
Shift + Cmd + W
Shift + Ctrl + W
Insert Error Log
Insert console.error() with line
Shift + Cmd + E
Shift + Ctrl + E
Select All Logs
Select all console logs
Shift + Alt + D
Shift + Alt + D
Select Normal Logs
Select only console.log
Shift + Alt + L
Shift + Alt + L
Select Warn Logs
Select only console.warn
Shift + Alt + W
Shift + Alt + W
Select Error Logs
Select only console.error
Shift + Alt + E
Shift + Alt + E
🔧 Supported Languages
JavaScript
TypeScript
Python
Java
C++
C
Go
PHP
Ruby
C#
🔍 Language Compatibility Table
Some languages (e.g., Ruby, C++) have limitations due to idiomatic ambiguity or lack of native error/warn split (you could extend regex support later).