diff options
author | crupest <crupest@outlook.com> | 2022-11-21 19:09:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-21 19:09:33 +0800 |
commit | 8a2cc331e42ca1b0fd66451fd6492ea41266f7db (patch) | |
tree | a55b6ad62d07b401e3396a8f1714b3fbaf23d963 /BackEnd | |
parent | 75cd686d4ad448630c9ca1bdecfed81893cb4f9f (diff) | |
download | timeline-8a2cc331e42ca1b0fd66451fd6492ea41266f7db.tar.gz timeline-8a2cc331e42ca1b0fd66451fd6492ea41266f7db.tar.bz2 timeline-8a2cc331e42ca1b0fd66451fd6492ea41266f7db.zip |
Remove redundant log.
Diffstat (limited to 'BackEnd')
-rw-r--r-- | BackEnd/Timeline/Startup.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BackEnd/Timeline/Startup.cs b/BackEnd/Timeline/Startup.cs index 628be35d..b0713070 100644 --- a/BackEnd/Timeline/Startup.cs +++ b/BackEnd/Timeline/Startup.cs @@ -37,9 +37,9 @@ namespace Timeline public Startup(IConfiguration configuration, IWebHostEnvironment environment)
{
- Console.ForegroundColor = ConsoleColor.Green;
- Console.WriteLine("We are in environment: " + environment.EnvironmentName);
- Console.ResetColor();
+ // Console.ForegroundColor = ConsoleColor.Green;
+ // Console.WriteLine("We are in environment: " + environment.EnvironmentName);
+ // Console.ResetColor();
Environment = environment;
Configuration = configuration;
|