Skip to content
Snippets Groups Projects
Commit 9aee3eb0 authored by Anuj Gupta's avatar Anuj Gupta
Browse files

Update CrsOcpApplication.java

parent be0428ce
No related branches found
No related tags found
1 merge request!51Update CrsOcpApplication.java
Pipeline #46052 passed with warnings
......@@ -5,6 +5,10 @@ package org.opengroup.osdu.crs;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.opengroup.osdu.core.common.logging.DefaultLogger;
import org.opengroup.osdu.core.common.logging.JaxRsDpsLog;
import org.opengroup.osdu.core.common.model.http.DpsHeaders;
@SpringBootApplication
public class CrsOcpApplication extends CRSApplicationBase {
......@@ -12,5 +16,9 @@ public class CrsOcpApplication extends CRSApplicationBase {
public static void main(String[] args) {
SpringApplication.run(CrsOcpApplication.class, args);
}
@Bean
public JaxRsDpsLog jaxRsDpsLog() {
return new JaxRsDpsLog(new DefaultLogger(), new DpsHeaders());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment