Question1: I want to use a logger system in my application (JAVASCRIPT). What I want is that, when I call a function, so the function's name is displayed in the console...But without adding console.log() in each function. So I can see the full steps happening in my app... (if you tell me, you can use your debugger, this is not the solution I am looking for... because I just want to have it written in the console and that is all)
Question2: Such as logback in the java world, I can activate or deactivate some log per class...so I can activate / deactivate some log simply...Is there a similar way to use it in JS ?
Thanks you,