Tao Wen 7 лет назад
Родитель
Сommit
28f5fe9fd9
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      unbounded_executor.go

+ 1 - 1
unbounded_executor.go

@@ -110,7 +110,7 @@ func (executor *UnboundedExecutor) checkGoroutines() bool {
 	defer executor.activeGoroutinesMutex.Unlock()
 	for startFrom, count := range executor.activeGoroutines {
 		if count > 0 {
-			InfoLogger.Println("event!unbounded_executor.still waiting goroutines to quit",
+			InfoLogger.Println("UnboundedExecutor is still waiting goroutines to quit",
 				"startFrom", startFrom,
 				"count", count)
 			return false