Fix a log message in the passive tapper

This commit is contained in:
M. Mert Yildiran 2021-08-23 17:11:07 +03:00
parent 842122b5a1
commit cc5620e367
No known key found for this signature in database
GPG Key ID: D42ADB236521BF7A

View File

@ -371,7 +371,7 @@ func startPassiveTapper(outputItems chan *api.OutputChannelItem, allExtensionPor
memStats := runtime.MemStats{}
runtime.ReadMemStats(&memStats)
log.Printf(
"mem: %d, goroutines: %d, unmatched messages:",
"mem: %d, goroutines: %d",
memStats.HeapAlloc,
runtime.NumGoroutine(),
)