Browse Source

tweak log message

Tao Wen 7 years ago
parent
commit
28f5fe9fd9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      unbounded_executor.go

+ 1 - 1
unbounded_executor.go

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