| .. | .. |
|---|
| 25 | 25 | import org.apache.commons.io.IOUtils; |
|---|
| 26 | 26 | import org.jboss.resteasy.annotations.providers.multipart.MultipartForm; |
|---|
| 27 | 27 | import org.jboss.resteasy.annotations.providers.multipart.PartType; |
|---|
| 28 | | -import org.slf4j.Logger; |
|---|
| 29 | | -import org.slf4j.LoggerFactory; |
|---|
| 28 | +import org.apache.logging.log4j.Logger; |
|---|
| 29 | +import org.apache.logging.log4j.LogManager; |
|---|
| 30 | 30 | |
|---|
| 31 | 31 | // The Java class will be hosted at the URI path "/myresource" |
|---|
| 32 | 32 | @Path("/test") |
|---|
| 33 | 33 | public class LicenseServices { |
|---|
| 34 | 34 | |
|---|
| 35 | 35 | // private LicenseHelper licenseHelper = InjectorFactory.getInjector().getInstance(LicenseHelper.class); |
|---|
| 36 | | - private static final Logger log = LoggerFactory.getLogger(LicenseServices.class); |
|---|
| 36 | + private static final Logger log = LogManager.getLogger(LicenseServices.class); |
|---|
| 37 | 37 | |
|---|
| 38 | 38 | private static final int DEFAULT_LICENSE_EXPIRATION = 365; |
|---|
| 39 | 39 | private static final String LICENSE_STRING = "CurisIntegrity Config Server v{0}.{1}"; |
|---|