Commit be19e62
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