From 12aa97c52b3c801139652ba6f93d65996d0b3a38 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 21 Nov 2022 12:26:12 +0800 Subject: Add more logs. --- BackEnd/Timeline/Program.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'BackEnd/Timeline/Program.cs') diff --git a/BackEnd/Timeline/Program.cs b/BackEnd/Timeline/Program.cs index 82d0e0ac..2280d80c 100644 --- a/BackEnd/Timeline/Program.cs +++ b/BackEnd/Timeline/Program.cs @@ -1,6 +1,7 @@ using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; +using System; using System.Resources; using System.Threading.Tasks; @@ -12,6 +13,10 @@ namespace Timeline { public async static Task Main(string[] args) { + Console.ForegroundColor = ConsoleColor.Cyan; + Console.WriteLine("Hello world!"); + Console.ResetColor(); + var host = CreateWebHostBuilder(args).Build(); await host.RunAsync(); -- cgit v1.2.3