Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
[BZ 1100432] Make log instances available locally.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Negrea committed Jun 18, 2014
1 parent 1ca1b95 commit 300d834
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
import java.util.HashSet;
import java.util.Set;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jetbrains.annotations.NotNull;

import org.rhq.core.domain.configuration.Configuration;
Expand Down Expand Up @@ -52,6 +54,8 @@
public class HostControllerComponent<T extends ResourceComponent<?>> extends BaseServerComponent<T>
implements MeasurementFacet, OperationFacet {

private final Log log = LogFactory.getLog(HostControllerComponent.class);

private static final String DOMAIN_CONFIG_TRAIT = "domain-config-file";
private static final String HOST_CONFIG_TRAIT = "host-config-file";
private static final String DOMAIN_HOST_TRAIT = "domain-host-name";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
import java.util.Map;
import java.util.Set;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jetbrains.annotations.NotNull;

import org.rhq.core.domain.configuration.Configuration;
Expand Down Expand Up @@ -58,6 +60,8 @@
public class StandaloneASComponent<T extends ResourceComponent<?>> extends BaseServerComponent<T>
implements MeasurementFacet, OperationFacet {

private final Log log = LogFactory.getLog(StandaloneASComponent.class);

private static final String SERVER_CONFIG_TRAIT = "config-file";
private static final String JAVA_OPTS_ADDITIONAL_PROP = "javaOptsAdditional";

Expand Down

0 comments on commit 300d834

Please sign in to comment.