Skip to content

ConsoleLogger v0.0.17

Choose a tag to compare

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

Console Logger IntelliJ Plugin

CTRL + ALT + (1-6) to create console.logs from selection.
(1) = console.log( -----> $$: ", $$);
(2) = console.debug( -----> $$: ", $$);
(3) = console.log("%c ---> $$: ","color:#F0F;", $$);
(4) = console.log("%c ---> $$: ","color:#0F0;", $$);
(5) = console.warn("%c ---> $$: ","color:#F00;", $$);
(6) = console.warn("%c ---> $$: ","color:#00F;", $$);

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

    this.variable = someThing + otherThing  

With this.variable selected, (ctrl + alt + 1) gives you this result:

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

All 6 Console Loggers can be modified in Settings --> Tools --> ConsoleLogger .

Full Changelog: 0.0.13...0.0.17