3 Replies Latest reply on Jul 28, 2017 3:20 AM by sachin2411

    wildfly log deadlock issue

    sachin2411

      the issue is solved

        • 1. Re: wildfly log deadlock issue
          ctomc

          remove logback jar from your application and redeploy.

          it will work in all scenarios also with tomcat.

          • 2. Re: wildfly log deadlock issue
            sachin2411

            hi tomaz,

            Thanks for the reply

            I am using a custom logger jar specific to our application.I have exluded the jboss/wildfly logger using 

             

            <jboss-deployment-structure>

                <deployment>

            <exclude-subsystems>

            <subsystem name="logging" />

            </exclude-subsystems>

                </deployment>

            </jboss-deployment-structure>

            Anything else I need to do to use my custom logger and avoid the isssue?

            • 3. Re: wildfly log deadlock issue
              sachin2411

              I removed the spring boot logger module and logback classic something like this and it started working

               

              <dependency>

              <groupId>org.springframework.boot</groupId>

              <artifactId>spring-boot-starter</artifactId>

              <exclusions>

              <exclusion>

              <groupId>org.springframework.boot</groupId>

              <artifactId>spring-boot-starter-logging</artifactId>

              </exclusion>

              <exclusion>

              <groupId>org.springframework.boot</groupId>

              <artifactId>logback-classic</artifactId>

              </exclusion>

              </exclusions>

              </dependency>