Skip to content

ConsoleLogger v0.0.15

Choose a tag to compare

@OmarIskandarani-KSO OmarIskandarani-KSO released this 19 Oct 09:33
· 134 commits to master since this release
97e0cee

Console Logger IntelliJ Plugin

ConsoleLogger console.log() .debug() .warn() added with color.`

An Intellij plugin to quickly insert different styles of console logs
If you want to console.log this.variable from below,

  this.variable = someThing + otherThing

With this.variable selected, when you press (ctrl + alt + 1), you get this result:

  this.variable = someThing + otherThing
  console.log(" ---> this.variable: ", this.variable);

When you are finished, use (ctrl + alt + 0),to clean up.

Default ConsoleLoggers are:
(CTRL + ALT + 1) console.log( -----> $$: ", $$);
(CTRL + ALT + 2) console.debug( -----> $$: ", $$);
(CTRL + ALT + 3) console.log("%c ---> $$: ","color:#F0F;", $$);
(CTRL + ALT + 4) console.log("%c ---> $$: ","color:#0F0;", $$);
(CTRL + ALT + 5) console.warn("%c ---> $$: ","color:#F00;", $$);
(CTRL + ALT + 6) console.warn("%c ---> $$: ","color:#00F;", $$);

(CTRL + ALT + 0) removes all unedited console loggers from file or project

All 6 ConsoleLoggers can be modified in Settings | Code | ConsoleLogger.

Full Changelog: 0.0.13...0.0.15