From a07dd246d1671524958c62eec30276bc36fa3598 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 2 Jul 2025 13:11:51 -0400 Subject: [PATCH] MT#55283 flush stdout after config print Otherwise output doesn't appear until exit of process if stdout is fully buffered. Change-Id: Ieef30f7d3b5c290992575b616e1c579fbab7b6ad --- core/sems.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/sems.cpp b/core/sems.cpp index 983878c1..28e0df38 100644 --- a/core/sems.cpp +++ b/core/sems.cpp @@ -424,6 +424,8 @@ int main(int argc, char* argv[]) #endif AmConfig::Application.empty() ? "" : AmConfig::Application.c_str()); + fflush(stdout); + AmConfig::dump_Ifs(); if(set_fd_limit() < 0) {