Skip to content

Commit

Permalink
Fix casing of static variable
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Jan 14, 2017
1 parent 1220ba2 commit 77f55c5
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -53,7 +53,7 @@

public class TopologyTemplateResource {

private static final Logger logger = LoggerFactory.getLogger(TopologyTemplateResource.class);
private static final Logger LOGGER = LoggerFactory.getLogger(TopologyTemplateResource.class);

private final TTopologyTemplate topologyTemplate;

Expand Down Expand Up @@ -235,7 +235,7 @@ public Response getComponentInstanceJSON() {
String json = mapper.writeValueAsString(this.topologyTemplate);
res = Response.ok(json).build();
} catch (Exception e) {
TopologyTemplateResource.logger.error(e.getMessage(), e);
TopologyTemplateResource.LOGGER.error(e.getMessage(), e);
res = Response.serverError().entity(e.getMessage()).build();
}
return res;
Expand Down

0 comments on commit 77f55c5

Please sign in to comment.