Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Easy ConsoleNew to Visual Studio Code? Get it now.
Easy Console

Easy Console

Check-up Codes

|
44 installs
| (0) | Free
Easy console for debugging
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

EasyConsole - Smart Debug Logger

A VSCode extension that makes debugging easier with intelligent console logging across multiple programming languages.

Extension Demo

Features

  • 🚀 One-Click Debug Logging: Quick keyboard shortcut (Ctrl+Shift+Q / Cmd+Shift+Q) to insert debug statements
  • 🌍 Multi-Language Support: Automatically adapts to different programming languages:
    • JavaScript/TypeScript: console.log()
    • Python: print()
    • PHP: error_log()
    • Java: System.out.println()
    • C#: Console.WriteLine()
    • Go: fmt.Printf()
    • Ruby: puts
    • Rust: println!()

Installation

  1. Open VSCode
  2. Go to Extensions (Ctrl+Shift+X / Cmd+Shift+X)
  3. Search for "EasyConsole"
  4. Click Install

Usage

  1. Select any variable, expression, or text in your code
  2. Press Ctrl+Shift+Q (Windows/Linux) or Cmd+Shift+Q (Mac)
  3. A debug statement will be inserted on the next line

Example outputs for different languages:

// JavaScript/TypeScript
console.log('Debug:', myVariable);

# Python
print(f"Debug: {myVariable}")

// PHP
error_log("Debug: " . $myVariable);

// Java
System.out.println("Debug: " + myVariable);

// C#
Console.WriteLine($"Debug: {myVariable}");

// Go
fmt.Printf("Debug: %v\n", myVariable)

# Ruby
puts "Debug: #{myVariable}"

// Rust
println!("Debug: {:?}", myVariable);

Key Benefits

  • ⚡ Fast Debugging: Instantly add debug statements without typing
  • 🎯 Language Aware: Automatically uses the correct logging syntax
  • 🔍 Clear Output: Consistent debug prefix for easy log identification
  • 💡 Smart Formatting: Proper string formatting for each language

Requirements

  • VSCode version 1.96.0 or higher

Extension Settings

This extension contributes the following settings:

  • easyconsole.showSelectedText: Enable/disable the extension
  • Keyboard Shortcut: ctrl+shift+q (Windows/Linux) or cmd+shift+q (Mac)

Known Issues

Please report any issues on our GitHub repository.

Release Notes

0.0.3

  • Added multi-language support
  • Improved code formatting
  • Bug fixes and performance improvements

0.0.2

  • Added keyboard shortcuts
  • Enhanced debugging output

0.0.1

  • Initial release
  • Basic console logging functionality

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This extension is licensed under the MIT License.

Author

Created by CheckupCodes


Enjoy debugging with EasyConsole! 🚀

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