Commit be19e62

Richard Luby <richluby@gmail.com>
2016-11-16 16:13:09
removed unnecessary log statement
1 parent 40b0408
Changed files (1)
structures.go
@@ -1,7 +1,5 @@
 package main
 
-import "log"
-
 // API_ROOT defines the root path for the web api interface
 const API_ROOT = "/api"
 
@@ -95,7 +93,6 @@ func (cSem *CountingSemaphore) V() {
 // note: race conditions can totally happen
 func (cSem *CountingSemaphore) Queued() int {
 	if cSem.counter != nil {
-		log.Printf("Len: %d", cSem.locksTaken)
 		return cSem.locksTaken
 	}
 	return -1