Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions platform-api/internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -823,8 +823,6 @@ func (s *Server) Start(port string, certDir string) error {
}
s.logger.Info("Platform API started", "mode", mode)

printStartedMarker(mode)

quit := make(chan os.Signal, 1)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
defer signal.Stop(quit)
Expand Down Expand Up @@ -860,19 +858,6 @@ func (s *Server) Start(port string, certDir string) error {
}
}

// printStartedMarker writes a large, prominent banner for humans watching
// the console, matching the gateway controller's startup banner style. It's
// purely decorative — the structured "Platform API started" slog line is the
// source of truth for log parsing.
func printStartedMarker(mode string) {
fmt.Print("\n\n" +
"========================================================================\n" +
"\n" +
" Platform API Started mode=" + mode + "\n" +
"\n" +
"========================================================================\n" +
"\n\n")
}

// GetMux returns the raw ServeMux for testing purposes.
func (s *Server) GetMux() *http.ServeMux {
Expand Down
2 changes: 0 additions & 2 deletions portals/ai-workspace/bff/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,8 @@ func printStartedMarker(mode string) {
fmt.Print("\n\n" +
"========================================================================\n" +
"\n" +
"\n" +
" AI Workspace Started mode=" + mode + "\n" +
"\n" +
"\n" +
"========================================================================\n" +
"\n\n")
}
Expand Down
Loading