mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
move redundant log
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sync"
|
||||
)
|
||||
|
||||
@@ -28,7 +27,6 @@ func (cm *ChanMap) ChanBlocked(key string) chan string {
|
||||
if ch, ok := cm.m.Load(key); ok {
|
||||
return ch.(interface{}).(chan string)
|
||||
}
|
||||
fmt.Println("@@####@@@@#@####$@@#")
|
||||
ch := make(chan string)
|
||||
cm.m.Store(key, ch)
|
||||
return ch
|
||||
|
||||
Reference in New Issue
Block a user