Stack map does not match the one at exception handler 602 Error

Hi
We have deployed Liquibase in Development and Rct environment with success
But in the Production environment we have the following error message<

SpringBoot failed to start and Tomcat 8.5.46 stop!

Where is the problem?

Regards
Bytecode

The error you get seems related to SLF4J

Try adding the below dependencies in your pom.xml

  <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
       <version>1.7.5</version>
   </dependency>
   <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
       <version>1.7.5</version>
   </dependency>

Source: