Skip to content

Commit

Permalink
Add more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed Apr 27, 2023
1 parent 378f15e commit ff44f30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ public final class HBClientAsynchronousTest
public void setup()
throws Exception
{
LOG.debug("test setup");

this.server =
QWebServers.createServer(20000);

Expand Down Expand Up @@ -146,6 +148,7 @@ public void setup()
public void tearDown()
throws Exception
{
LOG.debug("test teardown");
this.server.close();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ public final class HBClientSynchronousTest
public void setup()
throws Exception
{
LOG.debug("test setup");

this.server =
QWebServers.createServer(20000);

Expand Down Expand Up @@ -131,6 +133,7 @@ public void setup()
public void tearDown()
throws Exception
{
LOG.debug("test teardown");
this.server.close();
}

Expand Down

0 comments on commit ff44f30

Please sign in to comment.