Skip to content

Commit 51dc16a

Browse files
committed
Removing unnecessary logs
1 parent f85ffd4 commit 51dc16a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main/scala/de/upb/cs/swt/delphi/instanceregistry/RequestHandler.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,6 @@ class RequestHandler(configuration: Configuration, authDao: AuthDAO, instanceDao
242242
OperationResult.IdUnknown
243243
} else {
244244
val matchedInstance = instanceDao.getInstance(matchedInstanceId).get
245-
246-
log.info(s"called id is $callerId and matched id is $matchedInstanceId")
247245
//Update list of matching results
248246
instanceDao.addMatchingResult(matchedInstanceId, matchingSuccess)
249247
//Update state of matchedInstance accordingly
@@ -279,7 +277,6 @@ class RequestHandler(configuration: Configuration, authDao: AuthDAO, instanceDao
279277
val getlinkFrom = instanceDao.getLinksTo(matchedInstanceId)
280278
for (linklist <- getlinkFrom) {
281279
if (linklist.linkState != LinkState.Failed) {
282-
log.debug(s"value in new block is From: ${linklist.idFrom}, MI: $matchedInstanceId To: ${linklist.idTo}")
283280
val link = InstanceLink(linklist.idFrom, matchedInstanceId, LinkState.Failed)
284281
instanceDao.updateLink(link) match {
285282
case Success(_) =>

0 commit comments

Comments
 (0)