Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #811 from zanata/liquibase-CORE-2024-workaround
Browse files Browse the repository at this point in the history
Add workaround for Liquibase CORE-2024
  • Loading branch information
seanf committed May 15, 2015
2 parents 8fad6df + 6ccdee6 commit f754844
Showing 1 changed file with 17 additions and 0 deletions.
@@ -0,0 +1,17 @@
package org.eclipse.jetty.server.handler;

import lombok.extern.slf4j.Slf4j;

/**
* Workaround for unwanted logging caused by Liquibase.
* http://stackoverflow.com/questions/26530677/why-failed-to-define-class-warn-from-server-startup.
* https://liquibase.jira.com/browse/CORE-2024.
*
* @author cilap http://stackoverflow.com/a/29942016/14379
*/
@Slf4j
// TODO Remove when Liquibase CORE-2024 is fixed
public class AbstractHandler {
public AbstractHandler() {
}
}

0 comments on commit f754844

Please sign in to comment.