From 9a9bffb4ad70a6cbb10249aafb9bd743a905bdd9 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Thu, 22 Feb 2018 09:40:00 +0000
Subject: [PATCH] progress() no longer outputs to event log (reduce chatter).

---
 src/sbbs3/con_out.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/sbbs3/con_out.cpp b/src/sbbs3/con_out.cpp
index 0db67b1f26..db67a6a80e 100644
--- a/src/sbbs3/con_out.cpp
+++ b/src/sbbs3/con_out.cpp
@@ -710,6 +710,8 @@ void sbbs_t::progress(const char* text, int count, int total, int interval)
 {
 	char str[128];
 
+	if(cfg.node_num == 0)
+		return;	// Don't output this for events
 	if((count%interval) != 0)
 		return;
 	if(text == NULL) text = "";
-- 
GitLab