Commit bf67c4d3 by xlx

style(boot): 简化应用程序启动日志输出

- 移除认证授权中心启动日志中的装饰性字符和ASCII艺术
- 移
parent 735cb3c3
...@@ -12,6 +12,6 @@ public class MatchtechAuthIdmApplication ...@@ -12,6 +12,6 @@ public class MatchtechAuthIdmApplication
public static void main(String[] args) public static void main(String[] args)
{ {
SpringApplication.run(MatchtechAuthIdmApplication.class, args); SpringApplication.run(MatchtechAuthIdmApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ \n"); System.out.println("认证授权中心启动成功");
} }
} }
\ No newline at end of file
...@@ -12,6 +12,6 @@ public class MatchtechAuthLocalApplication ...@@ -12,6 +12,6 @@ public class MatchtechAuthLocalApplication
public static void main(String[] args) public static void main(String[] args)
{ {
SpringApplication.run(MatchtechAuthLocalApplication.class, args); SpringApplication.run(MatchtechAuthLocalApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ \n"); System.out.println("认证授权中心启动成功");
} }
} }
\ No newline at end of file
...@@ -15,15 +15,6 @@ public class MatchtechFileApplication ...@@ -15,15 +15,6 @@ public class MatchtechFileApplication
public static void main(String[] args) public static void main(String[] args)
{ {
SpringApplication.run(MatchtechFileApplication.class, args); SpringApplication.run(MatchtechFileApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 文件服务模块启动成功 ლ(´ڡ`ლ)゙ \n" + System.out.println("文件服务模块启动成功");
" .-------. ____ __ \n" +
" | _ _ \\ \\ \\ / / \n" +
" | ( ' ) | \\ _. / ' \n" +
" |(_ o _) / _( )_ .' \n" +
" | (_,_).' __ ___(_ o _)' \n" +
" | |\\ \\ | || |(_,_)' \n" +
" | | \\ `' /| `-' / \n" +
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
} }
} }
...@@ -18,15 +18,6 @@ public class MatchtechJobApplication ...@@ -18,15 +18,6 @@ public class MatchtechJobApplication
public static void main(String[] args) public static void main(String[] args)
{ {
SpringApplication.run(MatchtechJobApplication.class, args); SpringApplication.run(MatchtechJobApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 定时任务模块启动成功 ლ(´ڡ`ლ)゙ \n" + System.out.println("定时任务模块启动成功");
" .-------. ____ __ \n" +
" | _ _ \\ \\ \\ / / \n" +
" | ( ' ) | \\ _. / ' \n" +
" |(_ o _) / _( )_ .' \n" +
" | (_,_).' __ ___(_ o _)' \n" +
" | |\\ \\ | || |(_,_)' \n" +
" | | \\ `' /| `-' / \n" +
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment