Reason/Context
Why we need this improvement?
Several output messages in the CLIwere missing terminating newline characters (\n). This caused inconsistent terminal output where the next prompt or log message would appear on the same line as the previous output.
How will this change help?
It ensures that all CLI output is clean, readable, and follows standard terminal formatting conventions by ensuring every complete message occupies its own line.
Description
Describe the feature or enhancement here.
We conducted a comprehensive audit of the codebase for all fmt.Print and fmt.Printf calls. We added missing \n characters to all terminal outputs while preserving specific "Username: " and "Password: " prompts where a newline is intentionally omitted for interactive input.
Reason/Context
Why we need this improvement?
Several output messages in the CLIwere missing terminating newline characters (
\n). This caused inconsistent terminal output where the next prompt or log message would appear on the same line as the previous output.How will this change help?
It ensures that all CLI output is clean, readable, and follows standard terminal formatting conventions by ensuring every complete message occupies its own line.
Description
Describe the feature or enhancement here.
We conducted a comprehensive audit of the codebase for all
fmt.Printandfmt.Printfcalls. We added missing\ncharacters to all terminal outputs while preserving specific "Username: " and "Password: " prompts where a newline is intentionally omitted for interactive input.