Skip to content
Snippets Groups Projects
Commit b93b9854 authored by felmer's avatar felmer
Browse files

SE-227 bug fixed in performance logging

SVN: 15156
parent 591c4da9
No related branches found
No related tags found
No related merge requests found
...@@ -99,6 +99,7 @@ public class PhosphoNetXClientService extends AbstractClientService implements ...@@ -99,6 +99,7 @@ public class PhosphoNetXClientService extends AbstractClientService implements
TechId experimentID, String treatmentTypeOrNull) TechId experimentID, String treatmentTypeOrNull)
{ {
StopWatch stopWatch = new StopWatch(); StopWatch stopWatch = new StopWatch();
stopWatch.start();
try try
{ {
final String sessionToken = getSessionToken(); final String sessionToken = getSessionToken();
...@@ -114,6 +115,7 @@ public class PhosphoNetXClientService extends AbstractClientService implements ...@@ -114,6 +115,7 @@ public class PhosphoNetXClientService extends AbstractClientService implements
throws ch.systemsx.cisd.openbis.generic.client.web.client.exception.UserFailureException throws ch.systemsx.cisd.openbis.generic.client.web.client.exception.UserFailureException
{ {
StopWatch stopWatch = new StopWatch(); StopWatch stopWatch = new StopWatch();
stopWatch.start();
try try
{ {
final String sessionToken = getSessionToken(); final String sessionToken = getSessionToken();
...@@ -141,6 +143,7 @@ public class PhosphoNetXClientService extends AbstractClientService implements ...@@ -141,6 +143,7 @@ public class PhosphoNetXClientService extends AbstractClientService implements
throws ch.systemsx.cisd.openbis.generic.client.web.client.exception.UserFailureException throws ch.systemsx.cisd.openbis.generic.client.web.client.exception.UserFailureException
{ {
StopWatch stopWatch = new StopWatch(); StopWatch stopWatch = new StopWatch();
stopWatch.start();
try try
{ {
final String sessionToken = getSessionToken(); final String sessionToken = getSessionToken();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment