aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Program.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-11-21 12:26:12 +0800
committercrupest <crupest@outlook.com>2022-11-21 12:26:12 +0800
commit12aa97c52b3c801139652ba6f93d65996d0b3a38 (patch)
tree4236f6850acaf22db55b02c20660b81dd5e9294e /BackEnd/Timeline/Program.cs
parentdf53f19245e0957fff1e1e01573c3fcfcf53d8b8 (diff)
downloadtimeline-12aa97c52b3c801139652ba6f93d65996d0b3a38.tar.gz
timeline-12aa97c52b3c801139652ba6f93d65996d0b3a38.tar.bz2
timeline-12aa97c52b3c801139652ba6f93d65996d0b3a38.zip
Add more logs.
Diffstat (limited to 'BackEnd/Timeline/Program.cs')
-rw-r--r--BackEnd/Timeline/Program.cs5
1 files changed, 5 insertions, 0 deletions
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();