Skip to content

Commit 4eebe22

Browse files
committed
Do not require debug-cluster for showing logs on quickly failing servers
1 parent 6346205 commit 4eebe22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/runtime_server_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ func (s *runtimeServerManager) runServer(ctx context.Context, log *logging.Logge
339339
if isRecentFailure && !s.stopping {
340340
if !portInUse {
341341
log.Infof("%s has terminated quickly, in %s (recent failures: %d)", serverType, uptime, recentFailures)
342-
if recentFailures >= minRecentFailuresForLog && config.DebugCluster {
342+
if recentFailures >= minRecentFailuresForLog {
343343
// Show logs of the server
344344
s.showRecentLogs(log, runtimeContext, serverType)
345345
}

0 commit comments

Comments
 (0)