Skip to content

Getting Started

Installing the Plugin

  • IntelliJ IDEA --> Preferences --> Plugins --> Marketplace
  • Search for Unlogged in the marketplace & Install

Adding the dependency

<dependency>
  <artifactId>unlogged-sdk</artifactId>
  <groupId>video.bug</groupId>
  <version>0.0.14</version>
</dependency>
dependencies
{
    implementation 'video.bug:unlogged-sdk:0.0.14'
    annotationProcessor 'video.bug:unlogged-sdk:0.0.14'
}

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);
    }

Clean, and Run!

mvn clean
gradle clean