ConsoleLogger v0.0.17
·
134 commits
to master
since this release
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