Getting Started
Installing the Plugin
- IntelliJ IDEA --> Preferences --> Plugins --> Marketplace
- Search for Unlogged in the marketplace & Install
Adding the dependency
Adding the annotion
To start recording method input and return values - add @Unlogged
annoation just above your main method.
Here is an example.
@Unlogged
public static void main(String[] args) {
SpringApplication.run(JwtDemoApplication.class, args);
}