Skip to content

Commit

Permalink
debug message removed
Browse files Browse the repository at this point in the history
  • Loading branch information
anfeng committed May 10, 2013
1 parent 89e8c66 commit cbd9d1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void reconnect() {
close();
}
} catch (InterruptedException e) {
LOG.info("connection failed", e);
LOG.warn("connection failed", e);
}
}

Expand Down Expand Up @@ -157,7 +157,7 @@ public void close() {
@Override
public void run() {
if (ready_to_release_resource.get()) {
LOG.info("client resource released");
LOG.debug("client resource released");
factory.releaseExternalResources();
timer.cancel();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
import backtype.storm.messaging.TaskMessage;

public class MessageDecoder extends FrameDecoder {
private static final Logger LOG = LoggerFactory.getLogger(MessageDecoder.class);

/*
* Each ControlMessage is encoded as:
* code (<0) ... short(2)
Expand Down

0 comments on commit cbd9d1e

Please sign in to comment.