Skip to content

Commit

Permalink
Removing .info
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed Mar 31, 2010
1 parent 8985b76 commit da87b6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/org/hornetq/ra/inflow/HornetQActivation.java
Expand Up @@ -279,7 +279,7 @@ public void stop()
*/
protected synchronized void setup() throws Exception
{
HornetQActivation.log.info("Setting up " + spec);
HornetQActivation.log.debug("Setting up " + spec);

setupCF();

Expand Down Expand Up @@ -307,15 +307,15 @@ protected synchronized void setup() throws Exception
}
}

HornetQActivation.log.info("Setup complete " + this);
HornetQActivation.log.debug("Setup complete " + this);
}

/**
* Teardown the activation
*/
protected synchronized void teardown()
{
HornetQActivation.log.info("Tearing down " + spec);
HornetQActivation.log.debug("Tearing down " + spec);

for (HornetQMessageHandler handler : handlers)
{
Expand All @@ -326,7 +326,7 @@ protected synchronized void teardown()
factory.close();
factory = null;
}
HornetQActivation.log.info("Tearing down complete " + this);
HornetQActivation.log.debug("Tearing down complete " + this);
}

protected void setupCF() throws Exception
Expand Down

0 comments on commit da87b6b

Please sign in to comment.