File tree Expand file tree Collapse file tree
soloncode-cli/src/main/java/org/noear/solon/codecli/portal/cli Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -739,10 +739,10 @@ public void printWelcome(String text) {
739739
740740 String path = new File (engine .getWorkspace ()).getAbsolutePath ();
741741
742- terminal . writer (). write ( BOLD + "SolonCode" + RESET + DIM + " " + AgentFlags .getVersion () + " PID-" + Utils .pid () + " Model:" + modelName + RESET );
743- terminal . writer (). write ( DIM + path + RESET );
744- terminal . writer (). write ( DIM + DateUtil .format (new Date (), "yyyy-MM-dd HH:mm" ) + RESET );
745- terminal . writer (). write (text );
746- terminal . writer () .flush ();
742+ System . out . println ( "SolonCode" + " " + AgentFlags .getVersion () + " PID-" + Utils .pid () + " Model:" + modelName );
743+ System . out . println ( path );
744+ System . out . println ( DateUtil .format (new Date (), "yyyy-MM-dd HH:mm" ));
745+ System . out . println (text );
746+ System . out .flush ();
747747 }
748748}
You can’t perform that action at this time.
0 commit comments